Cleanup
This commit is contained in:
Tomáš Votruba 2019-07-09 18:26:01 +02:00 committed by GitHub
commit 048f6eebea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 11 deletions

View File

@ -3547,7 +3547,7 @@ services:
- class: `Rector\Php\Rector\FuncCall\PregReplaceEModifierRector`
The /e modifier is no longer supported, use preg_replace_callback instead
The /e modifier is no longer supported, use preg_replace_callback instead
```diff
class SomeClass

View File

@ -917,7 +917,7 @@ if (true) {
```php
?>
<strong>feel</strong><?php
<strong>feel</strong><?php
```
<br>

View File

@ -64,9 +64,7 @@ CODE_SAMPLE
}
$variable = $node->left->args[0]->value;
}
if ($node->right instanceof FuncCall) {
} elseif ($node->right instanceof FuncCall) {
if (! $this->isName($node->right, 'strlen')) {
return null;
}
@ -76,6 +74,8 @@ CODE_SAMPLE
}
$variable = $node->right->args[0]->value;
} else {
return null;
}
/** @var Expr $variable */

View File

@ -2,7 +2,7 @@
namespace Rector\Tests\PhpParser\Node\Value;
use Generator;
use Iterator;
use PhpParser\BuilderFactory;
use PhpParser\Node\Expr;
use PhpParser\Node\Expr\BinaryOp\Plus;
@ -28,17 +28,13 @@ final class ValueResolverTest extends AbstractKernelTestCase
/**
* @dataProvider dataProvider
* @param mixed $expected
* @param Expr $expr
*/
public function test($expected, Expr $expr): void
{
$this->assertSame($expected, $this->valueResolver->resolve($expr));
}
/**
* @return Generator
*/
public function dataProvider(): Generator
public function dataProvider(): Iterator
{
$builderFactory = new BuilderFactory();