@@ -1,5 +1,5 @@ |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types=1); |
|
| 2 | +declare(strict_types = 1); |
|
| 3 | 3 | |
| 4 | 4 | namespace Moka\Generator; |
| 5 | 5 | |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types=1); |
|
| 2 | +declare(strict_types = 1); |
|
| 3 | 3 | |
| 4 | 4 | namespace Moka\Factory; |
| 5 | 5 | |
@@ -20,7 +20,7 @@ discard block |
||
| 20 | 20 | public static function get(MockingStrategyInterface $mockingStrategy): ProxyGenerator |
| 21 | 21 | { |
| 22 | 22 | $key = self::key($mockingStrategy); |
| 23 | - if (!array_key_exists($key, self::$proxyGenerators) || !self::$proxyGenerators[$key] instanceof ProxyGenerator) { |
|
| 23 | + if ( ! array_key_exists($key, self::$proxyGenerators) || ! self::$proxyGenerators[$key] instanceof ProxyGenerator) { |
|
| 24 | 24 | self::$proxyGenerators[$key] = static::build($mockingStrategy); |
| 25 | 25 | } |
| 26 | 26 | |
@@ -24,7 +24,7 @@ |
||
| 24 | 24 | private $__moka_mockingStrategy; |
| 25 | 25 | |
| 26 | 26 | /** |
| 27 | - * @return object |
|
| 27 | + * @return \PHPUnit_Framework_MockObject_MockObject |
|
| 28 | 28 | */ |
| 29 | 29 | public function __moka_getMock() |
| 30 | 30 | { |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types=1); |
|
| 2 | +declare(strict_types = 1); |
|
| 3 | 3 | |
| 4 | 4 | namespace Moka\Proxy; |
| 5 | 5 | |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | */ |
| 76 | 76 | protected function doCall(string $name, array $arguments) |
| 77 | 77 | { |
| 78 | - if (!$this->__moka_mockingStrategy instanceof MockingStrategyInterface) { |
|
| 78 | + if ( ! $this->__moka_mockingStrategy instanceof MockingStrategyInterface) { |
|
| 79 | 79 | return null; |
| 80 | 80 | } |
| 81 | 81 | |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | */ |
| 91 | 91 | protected function doGet(string $name) |
| 92 | 92 | { |
| 93 | - if (!$this->__moka_mockingStrategy instanceof MockingStrategyInterface) { |
|
| 93 | + if ( ! $this->__moka_mockingStrategy instanceof MockingStrategyInterface) { |
|
| 94 | 94 | return null; |
| 95 | 95 | } |
| 96 | 96 | |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types=1); |
|
| 2 | +declare(strict_types = 1); |
|
| 3 | 3 | |
| 4 | 4 | namespace Moka; |
| 5 | 5 | |
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | */ |
| 46 | 46 | public static function __callStatic(string $name, array $arguments): ProxyInterface |
| 47 | 47 | { |
| 48 | - if (!isset(self::$mockingStrategies[$name])) { |
|
| 48 | + if ( ! isset(self::$mockingStrategies[$name])) { |
|
| 49 | 49 | self::$mockingStrategies[$name] = PluginHelper::load($name); |
| 50 | 50 | } |
| 51 | 51 | |
@@ -126,7 +126,7 @@ discard block |
||
| 126 | 126 | { |
| 127 | 127 | $backtrace = debug_backtrace(DEBUG_BACKTRACE_PROVIDE_OBJECT); |
| 128 | 128 | foreach ($backtrace as $frame) { |
| 129 | - if (!isset($frame['object'])) { |
|
| 129 | + if ( ! isset($frame['object'])) { |
|
| 130 | 130 | continue; |
| 131 | 131 | } |
| 132 | 132 | |
@@ -1,5 +1,5 @@ |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types=1); |
|
| 2 | +declare(strict_types = 1); |
|
| 3 | 3 | |
| 4 | 4 | namespace Moka\Generator\Template; |
| 5 | 5 | |
@@ -1,5 +1,5 @@ |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types=1); |
|
| 2 | +declare(strict_types = 1); |
|
| 3 | 3 | |
| 4 | 4 | namespace Moka\Generator\Template; |
| 5 | 5 | |
@@ -1,5 +1,5 @@ |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types=1); |
|
| 2 | +declare(strict_types = 1); |
|
| 3 | 3 | |
| 4 | 4 | namespace Moka\Generator\Template; |
| 5 | 5 | |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types=1); |
|
| 2 | +declare(strict_types = 1); |
|
| 3 | 3 | |
| 4 | 4 | namespace Moka\Generator\Template; |
| 5 | 5 | |
@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | protected static function doGenerate(\ReflectionParameter $parameter): string |
| 28 | 28 | { |
| 29 | 29 | try { |
| 30 | - $defaultValue = !$parameter->allowsNull() |
|
| 30 | + $defaultValue = ! $parameter->allowsNull() |
|
| 31 | 31 | ? var_export($parameter->getDefaultValue(), true) |
| 32 | 32 | : 'null'; |
| 33 | 33 | |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types=1); |
|
| 2 | +declare(strict_types = 1); |
|
| 3 | 3 | |
| 4 | 4 | namespace Moka\Generator\Template; |
| 5 | 5 | |
@@ -18,8 +18,8 @@ discard block |
||
| 18 | 18 | protected static function getVisibility(\Reflector $reflector): string |
| 19 | 19 | { |
| 20 | 20 | if ( |
| 21 | - !$reflector instanceof \ReflectionMethod && |
|
| 22 | - !$reflector instanceof \ReflectionProperty |
|
| 21 | + ! $reflector instanceof \ReflectionMethod && |
|
| 22 | + ! $reflector instanceof \ReflectionProperty |
|
| 23 | 23 | ) { |
| 24 | 24 | throw new InvalidArgumentException( |
| 25 | 25 | sprintf( |