Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7e4930d

Browse files
committed
Make everything final.
1 parent 33240f8 commit 7e4930d

7 files changed

+7
-7
lines changed

src/BuilderMethodExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use PHPStan\Reflection\MethodsClassReflectionExtension;
1212
use PHPStan\Reflection\MethodReflection;
1313

14-
class BuilderMethodExtension implements MethodsClassReflectionExtension, BrokerAwareExtension
14+
final class BuilderMethodExtension implements MethodsClassReflectionExtension, BrokerAwareExtension
1515
{
1616
/**
1717
* @var \PHPStan\Broker\Broker

src/FacadeMethodExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use PHPStan\Reflection\MethodsClassReflectionExtension;
1212
use PHPStan\Reflection\MethodReflection;
1313

14-
class FacadeMethodExtension implements MethodsClassReflectionExtension, BrokerAwareExtension
14+
final class FacadeMethodExtension implements MethodsClassReflectionExtension, BrokerAwareExtension
1515
{
1616
/**
1717
* @var \PHPStan\Broker\Broker

src/HelpersReturnTypeExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
use PHPStan\Type\ObjectType;
1414
use PHPStan\Type\Type;
1515

16-
class HelpersReturnTypeExtension implements DynamicFunctionReturnTypeExtension
16+
final class HelpersReturnTypeExtension implements DynamicFunctionReturnTypeExtension
1717
{
1818
/**
1919
* @var string[]

src/MacroMethodExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
use PHPStan\Type\FileTypeMapper;
1414
use PHPStan\Type\Type;
1515

16-
class MacroMethodExtension implements MethodsClassReflectionExtension, BrokerAwareExtension
16+
final class MacroMethodExtension implements MethodsClassReflectionExtension, BrokerAwareExtension
1717
{
1818
/**
1919
* @var \PHPStan\Broker\Broker

src/MethodReflectionFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use PHPStan\Type\FileTypeMapper;
1212
use PHPStan\Type\Type;
1313

14-
class MethodReflectionFactory
14+
final class MethodReflectionFactory
1515
{
1616
/**
1717
* @var \PHPStan\Reflection\Php\PhpMethodReflectionFactory

src/ReflectionMethodAlwaysStatic.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace Weebly\PHPStan\Laravel;
44

5-
class ReflectionMethodAlwaysStatic extends \ReflectionMethod
5+
final class ReflectionMethodAlwaysStatic extends \ReflectionMethod
66
{
77
/**
88
* @param \ReflectionMethod $reflectionMethod

src/ReflectionMethodFunctionProxy.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace Weebly\PHPStan\Laravel;
44

5-
class ReflectionMethodFunctionProxy extends \ReflectionMethod
5+
final class ReflectionMethodFunctionProxy extends \ReflectionMethod
66
{
77
/**
88
* @var string

0 commit comments

Comments
 (0)