rector/docs/AllRectorsOverview.md

7620 lines
150 KiB
Markdown
Raw Normal View History

2019-09-15 18:28:10 +00:00
# All 343 Rectors Overview
2018-04-29 09:03:47 +00:00
2018-08-01 20:09:34 +00:00
- [Projects](#projects)
- [General](#general)
## Projects
2019-08-05 21:10:47 +00:00
- [Architecture](#architecture)
2019-09-15 18:28:10 +00:00
- [Autodiscovery](#autodiscovery)
- [CakePHP](#cakephp)
2019-03-09 13:24:30 +00:00
- [Celebrity](#celebrity)
- [CodeQuality](#codequality)
- [CodingStyle](#codingstyle)
- [DeadCode](#deadcode)
2018-08-01 20:09:34 +00:00
- [Doctrine](#doctrine)
- [ElasticSearchDSL](#elasticsearchdsl)
- [Guzzle](#guzzle)
2019-03-09 13:24:30 +00:00
- [Laravel](#laravel)
- [Legacy](#legacy)
2019-02-21 14:36:16 +00:00
- [MysqlToMysqli](#mysqltomysqli)
2019-04-02 13:35:35 +00:00
- [Nette](#nette)
2019-03-16 20:31:46 +00:00
- [NetteTesterToPHPUnit](#nettetestertophpunit)
2019-02-02 16:22:15 +00:00
- [NetteToSymfony](#nettetosymfony)
- [PHPStan](#phpstan)
2018-07-31 21:47:59 +00:00
- [PHPUnit](#phpunit)
2019-08-05 21:10:47 +00:00
- [PHPUnitSymfony](#phpunitsymfony)
- [PSR4](#psr4)
- [Php](#php)
2019-03-16 20:31:46 +00:00
- [PhpSpecToPHPUnit](#phpspectophpunit)
2019-05-01 23:56:58 +00:00
- [RemovingStatic](#removingstatic)
2019-08-05 21:10:47 +00:00
- [Restoration](#restoration)
2019-05-01 23:56:58 +00:00
- [SOLID](#solid)
- [Sensio](#sensio)
2019-03-16 20:31:46 +00:00
- [Shopware](#shopware)
2018-09-28 16:33:35 +00:00
- [Silverstripe](#silverstripe)
- [Sylius](#sylius)
- [Symfony](#symfony)
2019-08-05 21:10:47 +00:00
- [SymfonyCodeQuality](#symfonycodequality)
- [SymfonyPHPUnit](#symfonyphpunit)
2018-09-28 16:33:35 +00:00
- [Twig](#twig)
2019-05-19 08:27:38 +00:00
- [TypeDeclaration](#typedeclaration)
2019-09-15 18:28:10 +00:00
- [ZendToSymfony](#zendtosymfony)
2018-09-28 16:33:35 +00:00
2019-08-05 21:10:47 +00:00
## Architecture
### `ConstructorInjectionToActionInjectionRector`
- class: `Rector\Architecture\Rector\Class_\ConstructorInjectionToActionInjectionRector`
```diff
final class SomeController
{
- /**
- * @var ProductRepository
- */
- private $productRepository;
-
- public function __construct(ProductRepository $productRepository)
+ public function default(ProductRepository $productRepository)
{
- $this->productRepository = $productRepository;
- }
-
- public function default()
- {
- $products = $this->productRepository->fetchAll();
+ $products = $productRepository->fetchAll();
}
}
```
<br>
### `RemoveRepositoryFromEntityAnnotationRector`
- class: `Rector\Architecture\Rector\Class_\RemoveRepositoryFromEntityAnnotationRector`
Removes repository class from @Entity annotation
```diff
use Doctrine\ORM\Mapping as ORM;
/**
- * @ORM\Entity(repositoryClass="ProductRepository")
+ * @ORM\Entity
*/
class Product
{
}
```
<br>
2019-09-15 18:28:10 +00:00
## Autodiscovery
### `MoveEntitiesToEntityDirectoryRector`
- class: `Rector\Autodiscovery\Rector\FileSystem\MoveEntitiesToEntityDirectoryRector`
Move entities to Entity namespace
```diff
-// file: app/Controller/Product.php
+// file: app/Entity/Product.php
-namespace App\Controller;
+namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity
*/
class Product
{
}
```
<br>
### `MoveInterfacesToContractNamespaceDirectoryRector`
- class: `Rector\Autodiscovery\Rector\FileSystem\MoveInterfacesToContractNamespaceDirectoryRector`
Move interface to "Contract" namespace
```diff
-// file: app/Exception/Rule.php
+// file: app/Contract/Rule.php
-namespace App\Exception;
+namespace App\Contract;
interface Rule
{
-}
+}
```
<br>
### `MoveServicesBySuffixToDirectoryRector`
- class: `Rector\Autodiscovery\Rector\FileSystem\MoveServicesBySuffixToDirectoryRector`
Move classes by their suffix to their own group/directory
```yaml
services:
Rector\Autodiscovery\Rector\FileSystem\MoveServicesBySuffixToDirectoryRector:
$groupNamesBySuffix:
- Repository
```
```diff
-// file: app/Entity/ProductRepository.php
+// file: app/Repository/ProductRepository.php
-namespace App/Entity;
+namespace App/Repository;
class ProductRepository
{
}
```
<br>
## CakePHP
2018-09-28 16:33:35 +00:00
### `ChangeSnakedFixtureNameToCamelRector`
- class: `Rector\CakePHP\Rector\Name\ChangeSnakedFixtureNameToCamelRector`
Changes $fixtues style from snake_case to CamelCase.
```diff
class SomeTest
{
protected $fixtures = [
- 'app.posts',
- 'app.users',
- 'some_plugin.posts/special_posts',
+ 'app.Posts',
+ 'app.Users',
+ 'some_plugin.Posts/SpeectialPosts',
];
```
<br>
2018-09-28 16:33:35 +00:00
### `ModalToGetSetRector`
- class: `Rector\CakePHP\Rector\MethodCall\ModalToGetSetRector`
Changes combined set/get `value()` to specific `getValue()` or `setValue(x)`.
```diff
$object = new InstanceConfigTrait;
-$config = $object->config();
-$config = $object->config('key');
+$config = $object->getConfig();
+$config = $object->getConfig('key');
-$object->config('key', 'value');
-$object->config(['key' => 'value']);
+$object->setConfig('key', 'value');
+$object->setConfig(['key' => 'value']);
```
2018-08-01 20:09:34 +00:00
<br>
2019-03-09 13:24:30 +00:00
## Celebrity
### `CommonNotEqualRector`
- class: `Rector\Celebrity\Rector\NotEqual\CommonNotEqualRector`
Use common != instead of less known <> with same meaning
```diff
final class SomeClass
{
public function run($one, $two)
{
- return $one <> $two;
+ return $one != $two;
}
}
```
<br>
### `LogicalToBooleanRector`
- class: `Rector\Celebrity\Rector\BooleanOp\LogicalToBooleanRector`
Change OR, AND to ||, && with more common understanding
```diff
-if ($f = false or true) {
+if (($f = false) || true) {
return $f;
}
```
<br>
2019-05-29 13:40:20 +00:00
### `SetTypeToCastRector`
2019-02-21 14:36:16 +00:00
2019-05-29 13:40:20 +00:00
- class: `Rector\Celebrity\Rector\FuncCall\SetTypeToCastRector`
2019-02-21 14:36:16 +00:00
2019-05-29 13:40:20 +00:00
Changes settype() to (type) where possible
2019-02-21 14:36:16 +00:00
```diff
class SomeClass
{
2019-05-29 13:40:20 +00:00
- public function run($foo)
+ public function run(array $items)
2019-02-21 14:36:16 +00:00
{
2019-05-29 13:40:20 +00:00
- settype($foo, 'string');
+ $foo = (string) $foo;
- return settype($foo, 'integer');
+ return (int) $foo;
2019-02-21 14:36:16 +00:00
}
}
```
<br>
2019-05-29 13:40:20 +00:00
## CodeQuality
2019-03-09 13:24:30 +00:00
### `AndAssignsToSeparateLinesRector`
2019-03-09 13:24:30 +00:00
- class: `Rector\CodeQuality\Rector\LogicalAnd\AndAssignsToSeparateLinesRector`
2019-05-29 13:40:20 +00:00
Split 2 assigns ands to separate line
2019-03-09 13:24:30 +00:00
```diff
class SomeClass
{
public function run()
2019-03-09 13:24:30 +00:00
{
$tokens = [];
- $token = 4 and $tokens[] = $token;
+ $token = 4;
+ $tokens[] = $token;
2019-03-09 13:24:30 +00:00
}
}
```
<br>
### `BooleanNotIdenticalToNotIdenticalRector`
- class: `Rector\CodeQuality\Rector\Identical\BooleanNotIdenticalToNotIdenticalRector`
Negated identical boolean compare to not identical compare (does not apply to non-bool values)
```diff
2019-05-29 13:40:20 +00:00
class SomeClass
{
2019-05-29 13:40:20 +00:00
public function run()
{
$a = true;
$b = false;
- var_dump(! $a === $b); // true
- var_dump(! ($a === $b)); // true
+ var_dump($a !== $b); // true
+ var_dump($a !== $b); // true
var_dump($a !== $b); // true
2019-05-29 13:40:20 +00:00
}
}
```
<br>
### `CallableThisArrayToAnonymousFunctionRector`
2018-12-31 11:50:32 +00:00
- class: `Rector\CodeQuality\Rector\Array_\CallableThisArrayToAnonymousFunctionRector`
2018-12-31 11:50:32 +00:00
Convert [$this, "method"] to proper anonymous function
2018-12-31 11:50:32 +00:00
```diff
class SomeClass
{
public function run()
{
$values = [1, 5, 3];
- usort($values, [$this, 'compareSize']);
+ usort($values, function ($first, $second) {
+ return $this->compareSize($first, $second);
+ });
return $values;
}
private function compareSize($first, $second)
{
return $first <=> $second;
}
}
2018-12-31 11:50:32 +00:00
```
<br>
### `CombinedAssignRector`
2018-10-21 22:26:45 +00:00
- class: `Rector\CodeQuality\Rector\Assign\CombinedAssignRector`
2018-10-21 22:26:45 +00:00
Simplify $value = $value + 5; assignments to shorter ones
2018-10-21 22:26:45 +00:00
```diff
-$value = $value + 5;
+$value += 5;
2018-10-21 22:26:45 +00:00
```
<br>
### `CompactToVariablesRector`
2019-05-01 23:56:58 +00:00
- class: `Rector\CodeQuality\Rector\FuncCall\CompactToVariablesRector`
2019-05-01 23:56:58 +00:00
Change compact() call to own array
2019-05-29 13:40:20 +00:00
```diff
class SomeClass
{
public function run()
{
$checkout = 'one';
$form = 'two';
- return compact('checkout', 'form');
+ return ['checkout' => $checkout, 'form' => $form];
}
}
2019-05-29 13:40:20 +00:00
```
<br>
### `CompleteDynamicPropertiesRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\CodeQuality\Rector\Class_\CompleteDynamicPropertiesRector`
2019-05-29 13:40:20 +00:00
Add missing dynamic properties
```diff
class SomeClass
{
+ /**
+ * @var int
+ */
+ public $value;
public function set()
{
$this->value = 5;
}
}
```
<br>
### `ConsecutiveNullCompareReturnsToNullCoalesceQueueRector`
- class: `Rector\CodeQuality\Rector\If_\ConsecutiveNullCompareReturnsToNullCoalesceQueueRector`
Change multiple null compares to ?? queue
2019-05-01 23:56:58 +00:00
```diff
class SomeClass
{
public function run()
{
- if (null !== $this->orderItem) {
- return $this->orderItem;
2019-05-29 13:40:20 +00:00
- }
-
- if (null !== $this->orderItemUnit) {
- return $this->orderItemUnit;
- }
-
- return null;
+ return $this->orderItem ?? $this->orderItemUnit;
2019-05-01 23:56:58 +00:00
}
}
```
<br>
2019-05-29 13:40:20 +00:00
### `ExplicitBoolCompareRector`
2019-05-19 08:27:38 +00:00
2019-05-29 13:40:20 +00:00
- class: `Rector\CodeQuality\Rector\If_\ExplicitBoolCompareRector`
2019-05-19 08:27:38 +00:00
2019-05-29 13:40:20 +00:00
Make if conditions more explicit
2019-05-19 08:27:38 +00:00
```diff
2019-05-29 13:40:20 +00:00
final class SomeController
2019-05-19 08:27:38 +00:00
{
2019-05-29 13:40:20 +00:00
public function run($items)
2019-05-19 08:27:38 +00:00
{
2019-05-29 13:40:20 +00:00
- if (!count($items)) {
+ if (count($items) === 0) {
return 'no items';
2019-05-19 08:27:38 +00:00
}
}
}
```
<br>
### `ForToForeachRector`
- class: `Rector\CodeQuality\Rector\For_\ForToForeachRector`
Change for() to foreach() where useful
```diff
class SomeClass
2019-05-29 13:40:20 +00:00
{
public function run($tokens)
2019-05-29 13:40:20 +00:00
{
- for ($i = 0, $c = count($tokens); $i < $c; ++$i) {
- if ($tokens[$i][0] === T_STRING && $tokens[$i][1] === 'fn') {
+ foreach ($tokens as $i => $token) {
+ if ($token[0] === T_STRING && $token[1] === 'fn') {
$previousNonSpaceToken = $this->getPreviousNonSpaceToken($tokens, $i);
if ($previousNonSpaceToken !== null && $previousNonSpaceToken[0] === T_OBJECT_OPERATOR) {
continue;
}
$tokens[$i][0] = self::T_FN;
}
}
2019-05-29 13:40:20 +00:00
}
}
```
<br>
2018-10-21 22:26:45 +00:00
### `ForeachToInArrayRector`
2018-10-21 22:26:45 +00:00
- class: `Rector\CodeQuality\Rector\Foreach_\ForeachToInArrayRector`
2018-10-21 22:26:45 +00:00
Simplify `foreach` loops into `in_array` when possible
2018-10-21 22:26:45 +00:00
```diff
-foreach ($items as $item) {
- if ($item === "something") {
- return true;
- }
2019-05-29 13:40:20 +00:00
-}
-
-return false;
+in_array("something", $items, true);
2018-10-21 22:26:45 +00:00
```
<br>
### `GetClassToInstanceOfRector`
- class: `Rector\CodeQuality\Rector\Identical\GetClassToInstanceOfRector`
Changes comparison with get_class to instanceof
```diff
-if (EventsListener::class === get_class($event->job)) { }
+if ($event->job instanceof EventsListener) { }
```
<br>
### `InArrayAndArrayKeysToArrayKeyExistsRector`
2019-05-19 08:27:38 +00:00
- class: `Rector\CodeQuality\Rector\FuncCall\InArrayAndArrayKeysToArrayKeyExistsRector`
2019-05-19 08:27:38 +00:00
Simplify `in_array` and `array_keys` functions combination into `array_key_exists` when `array_keys` has one argument only
2019-05-19 08:27:38 +00:00
```diff
-in_array("key", array_keys($array), true);
+array_key_exists("key", $array);
```
<br>
2019-08-05 21:10:47 +00:00
### `IsAWithStringWithThirdArgumentRector`
- class: `Rector\CodeQuality\Rector\FuncCall\IsAWithStringWithThirdArgumentRector`
```diff
class SomeClass
{
public function __construct(string $value)
{
- return is_a($value, 'stdClass');
+ return is_a($value, 'stdClass', true);
}
}
```
<br>
### `JoinStringConcatRector`
- class: `Rector\CodeQuality\Rector\Concat\JoinStringConcatRector`
Joins concat of 2 strings
```diff
class SomeClass
{
2019-05-19 08:27:38 +00:00
public function run()
{
- $name = 'Hi' . ' Tom';
+ $name = 'Hi Tom';
2019-05-19 08:27:38 +00:00
}
}
```
<br>
2019-08-05 21:10:47 +00:00
### `RemoveAlwaysTrueConditionSetInConstructorRector`
- class: `Rector\CodeQuality\Rector\If_\RemoveAlwaysTrueConditionSetInConstructorRector`
If conditions is always true, perform the content right away
```diff
final class SomeClass
{
private $value;
public function __construct($value)
{
$this->value = $value;
}
public function go()
{
- if ($this->value) {
- return 'yes';
- }
+ return 'yes';
}
}
```
<br>
### `SimplifyArraySearchRector`
- class: `Rector\CodeQuality\Rector\Identical\SimplifyArraySearchRector`
Simplify array_search to in_array
```diff
-array_search("searching", $array) !== false;
+in_array("searching", $array, true);
```
```diff
-array_search("searching", $array) != false;
+in_array("searching", $array);
```
<br>
### `SimplifyBoolIdenticalTrueRector`
2018-12-31 11:50:32 +00:00
- class: `Rector\CodeQuality\Rector\Identical\SimplifyBoolIdenticalTrueRector`
2018-12-31 11:50:32 +00:00
Symplify bool value compare to true or false
2018-12-31 11:50:32 +00:00
```diff
class SomeClass
{
public function run(bool $value, string $items)
2019-05-29 13:40:20 +00:00
{
- $match = in_array($value, $items, TRUE) === TRUE;
- $match = in_array($value, $items, TRUE) !== FALSE;
+ $match = in_array($value, $items, TRUE);
+ $match = in_array($value, $items, TRUE);
2018-12-31 11:50:32 +00:00
}
}
```
<br>
### `SimplifyConditionsRector`
2018-10-21 22:26:45 +00:00
- class: `Rector\CodeQuality\Rector\Identical\SimplifyConditionsRector`
2018-10-21 22:26:45 +00:00
Simplify conditions
2018-10-21 22:26:45 +00:00
```diff
-if (! ($foo !== 'bar')) {...
+if ($foo === 'bar') {...
```
<br>
### `SimplifyDeMorganBinaryRector`
- class: `Rector\CodeQuality\Rector\BinaryOp\SimplifyDeMorganBinaryRector`
Simplify negated conditions with de Morgan theorem
```diff
<?php
$a = 5;
$b = 10;
-$result = !($a > 20 || $b <= 50);
+$result = $a <= 20 && $b > 50;
2018-10-21 22:26:45 +00:00
```
<br>
2018-10-21 22:26:45 +00:00
2019-05-29 13:40:20 +00:00
### `SimplifyDuplicatedTernaryRector`
2019-03-31 12:25:39 +00:00
2019-05-29 13:40:20 +00:00
- class: `Rector\CodeQuality\Rector\Ternary\SimplifyDuplicatedTernaryRector`
2019-03-31 12:25:39 +00:00
2019-05-29 13:40:20 +00:00
Remove ternary that duplicated return value of true : false
2019-03-31 12:25:39 +00:00
```diff
class SomeClass
{
2019-05-29 13:40:20 +00:00
public function run(bool $value, string $name)
2019-03-31 12:25:39 +00:00
{
2019-05-29 13:40:20 +00:00
- $isTrue = $value ? true : false;
+ $isTrue = $value;
$isName = $name ? true : false;
2019-03-31 12:25:39 +00:00
}
}
```
<br>
### `SimplifyEmptyArrayCheckRector`
- class: `Rector\CodeQuality\Rector\BooleanAnd\SimplifyEmptyArrayCheckRector`
Simplify `is_array` and `empty` functions combination into a simple identical check for an empty array
2018-10-21 22:26:45 +00:00
```diff
-is_array($values) && empty($values)
+$values === []
2018-10-21 22:26:45 +00:00
```
<br>
2018-10-21 22:26:45 +00:00
### `SimplifyForeachToArrayFilterRector`
2019-02-18 15:51:24 +00:00
- class: `Rector\CodeQuality\Rector\Foreach_\SimplifyForeachToArrayFilterRector`
2019-02-18 15:51:24 +00:00
Simplify foreach with function filtering to array filter
2019-02-18 15:51:24 +00:00
```diff
-$directories = [];
$possibleDirectories = [];
-foreach ($possibleDirectories as $possibleDirectory) {
- if (file_exists($possibleDirectory)) {
- $directories[] = $possibleDirectory;
- }
-}
+$directories = array_filter($possibleDirectories, 'file_exists');
2019-05-29 13:40:20 +00:00
```
<br>
### `SimplifyForeachToCoalescingRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\CodeQuality\Rector\Foreach_\SimplifyForeachToCoalescingRector`
2019-05-29 13:40:20 +00:00
Changes foreach that returns set value to ??
2019-05-29 13:40:20 +00:00
```diff
-foreach ($this->oldToNewFunctions as $oldFunction => $newFunction) {
- if ($currentFunction === $oldFunction) {
- return $newFunction;
- }
-}
-
-return null;
+return $this->oldToNewFunctions[$currentFunction] ?? null;
2019-02-18 15:51:24 +00:00
```
<br>
### `SimplifyFuncGetArgsCountRector`
2018-12-31 11:50:32 +00:00
- class: `Rector\CodeQuality\Rector\FuncCall\SimplifyFuncGetArgsCountRector`
2018-12-31 11:50:32 +00:00
Simplify count of func_get_args() to fun_num_args()
```diff
-count(func_get_args());
+func_num_args();
```
<br>
### `SimplifyIfElseToTernaryRector`
- class: `Rector\CodeQuality\Rector\If_\SimplifyIfElseToTernaryRector`
Changes if/else for same value as assign to ternary
2018-12-31 11:50:32 +00:00
```diff
class SomeClass
{
public function run()
{
- if (empty($value)) {
- $this->arrayBuilt[][$key] = true;
- } else {
- $this->arrayBuilt[][$key] = $value;
- }
+ $this->arrayBuilt[][$key] = empty($value) ? true : $value;
2018-12-31 11:50:32 +00:00
}
}
```
<br>
### `SimplifyIfIssetToNullCoalescingRector`
2018-10-21 22:26:45 +00:00
- class: `Rector\CodeQuality\Rector\If_\SimplifyIfIssetToNullCoalescingRector`
Simplify binary if to null coalesce
2018-10-21 22:26:45 +00:00
```diff
final class SomeController
{
public function run($possibleStatieYamlFile)
{
- if (isset($possibleStatieYamlFile['import'])) {
- $possibleStatieYamlFile['import'] = array_merge($possibleStatieYamlFile['import'], $filesToImport);
- } else {
- $possibleStatieYamlFile['import'] = $filesToImport;
- }
+ $possibleStatieYamlFile['import'] = array_merge($possibleStatieYamlFile['import'] ?? [], $filesToImport);
}
}
2018-10-21 22:26:45 +00:00
```
<br>
2018-10-23 18:58:57 +00:00
### `SimplifyIfNotNullReturnRector`
2019-02-18 15:51:24 +00:00
- class: `Rector\CodeQuality\Rector\If_\SimplifyIfNotNullReturnRector`
2019-02-18 15:51:24 +00:00
Changes redundant null check to instant return
2019-02-18 15:51:24 +00:00
```diff
$newNode = 'something ;
-if ($newNode !== null) {
- return $newNode;
-}
-
-return null;
+return $newNode;
2019-02-18 15:51:24 +00:00
```
<br>
### `SimplifyIfReturnBoolRector`
2019-01-22 20:34:38 +00:00
- class: `Rector\CodeQuality\Rector\If_\SimplifyIfReturnBoolRector`
2019-01-22 20:34:38 +00:00
Shortens if return false/true to direct return
2019-01-22 20:34:38 +00:00
```diff
-if (strpos($docToken->getContent(), "\n") === false) {
- return true;
-}
-
-return false;
+return strpos($docToken->getContent(), "\n") === false;
2019-01-22 20:34:38 +00:00
```
<br>
### `SimplifyInArrayValuesRector`
2019-05-19 08:27:38 +00:00
- class: `Rector\CodeQuality\Rector\FuncCall\SimplifyInArrayValuesRector`
2019-05-29 13:40:20 +00:00
Removes unneeded array_values() in in_array() call
2019-05-29 13:40:20 +00:00
```diff
-in_array("key", array_values($array), true);
+in_array("key", $array, true);
2019-05-29 13:40:20 +00:00
```
<br>
### `SimplifyRegexPatternRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\CodeQuality\Rector\FuncCall\SimplifyRegexPatternRector`
2019-05-29 13:40:20 +00:00
Simplify regex pattern to known ranges
2019-05-19 08:27:38 +00:00
```diff
class SomeClass
{
public function run($value)
2019-05-19 08:27:38 +00:00
{
- preg_match('#[a-zA-Z0-9+]#', $value);
+ preg_match('#[\w\d+]#', $value);
2019-05-19 08:27:38 +00:00
}
}
```
<br>
### `SimplifyStrposLowerRector`
- class: `Rector\CodeQuality\Rector\FuncCall\SimplifyStrposLowerRector`
Simplify strpos(strtolower(), "...") calls
```diff
-strpos(strtolower($var), "...")"
+stripos($var, "...")"
2019-05-29 13:40:20 +00:00
```
<br>
### `SimplifyTautologyTernaryRector`
- class: `Rector\CodeQuality\Rector\Ternary\SimplifyTautologyTernaryRector`
Simplify tautology ternary to value
```diff
-$value = ($fullyQualifiedTypeHint !== $typeHint) ? $fullyQualifiedTypeHint : $typeHint;
+$value = $fullyQualifiedTypeHint;
```
<br>
### `SimplifyUselessVariableRector`
- class: `Rector\CodeQuality\Rector\Return_\SimplifyUselessVariableRector`
Removes useless variable assigns
2018-10-23 18:58:57 +00:00
```diff
function () {
- $a = true;
- return $a;
+ return true;
};
2018-10-23 18:58:57 +00:00
```
<br>
2018-10-21 22:26:45 +00:00
### `SingleInArrayToCompareRector`
2019-05-01 23:56:58 +00:00
- class: `Rector\CodeQuality\Rector\FuncCall\SingleInArrayToCompareRector`
2019-05-01 23:56:58 +00:00
Changes in_array() with single element to ===
2019-05-01 23:56:58 +00:00
```diff
class SomeClass
{
public function run()
2019-05-01 23:56:58 +00:00
{
- if (in_array(strtolower($type), ['$this'], true)) {
+ if (strtolower($type) === '$this') {
return strtolower($type);
}
2019-05-01 23:56:58 +00:00
}
}
```
<br>
2019-08-05 21:10:47 +00:00
### `StrlenZeroToIdenticalEmptyStringRector`
- class: `Rector\CodeQuality\Rector\FuncCall\StrlenZeroToIdenticalEmptyStringRector`
```diff
class SomeClass
{
public function run($value)
{
- $empty = strlen($value) === 0;
+ $empty = $value === '';
}
}
```
<br>
### `TernaryToElvisRector`
- class: `Rector\CodeQuality\Rector\Ternary\TernaryToElvisRector`
Use ?: instead of ?, where useful
```diff
function elvis()
{
- $value = $a ? $a : false;
+ $value = $a ?: false;
}
```
<br>
2019-08-05 21:10:47 +00:00
### `ThrowWithPreviousExceptionRector`
- class: `Rector\CodeQuality\Rector\Catch_\ThrowWithPreviousExceptionRector`
When throwing into a catch block, checks that the previous exception is passed to the new throw clause
```diff
class SomeClass
{
public function run()
{
try {
$someCode = 1;
} catch (Throwable $throwable) {
- throw new AnotherException('ups');
+ throw new AnotherException('ups', $throwable->getCode(), $throwable);
}
}
}
```
<br>
### `UnnecessaryTernaryExpressionRector`
2018-12-25 19:55:16 +00:00
- class: `Rector\CodeQuality\Rector\Ternary\UnnecessaryTernaryExpressionRector`
2018-12-25 19:55:16 +00:00
Remove unnecessary ternary expressions.
2018-12-25 19:55:16 +00:00
```diff
-$foo === $bar ? true : false;
+$foo === $bar;
```
<br>
2019-05-29 13:40:20 +00:00
### `UseIdenticalOverEqualWithSameTypeRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\CodeQuality\Rector\Equal\UseIdenticalOverEqualWithSameTypeRector`
2019-05-29 13:40:20 +00:00
Use ===/!== over ==/!=, it values have the same type
```diff
class SomeClass
{
2019-05-29 13:40:20 +00:00
public function run(int $firstValue, int $secondValue)
{
2019-05-29 13:40:20 +00:00
- $isSame = $firstValue == $secondValue;
- $isDiffernt = $firstValue != $secondValue;
+ $isSame = $firstValue === $secondValue;
+ $isDiffernt = $firstValue !== $secondValue;
}
}
```
<br>
## CodingStyle
2019-05-26 19:26:33 +00:00
2019-08-17 13:06:02 +00:00
### `AddArrayDefaultToArrayPropertyRector`
2019-05-26 19:26:33 +00:00
2019-08-17 13:06:02 +00:00
- class: `Rector\CodingStyle\Rector\Class_\AddArrayDefaultToArrayPropertyRector`
2019-08-17 13:06:02 +00:00
Adds array default value to property to prevent foreach over null error
2019-05-26 19:26:33 +00:00
```diff
class SomeClass
{
/**
* @var int[]
*/
2019-08-17 13:06:02 +00:00
- private $values;
+ private $values = [];
2019-05-29 13:40:20 +00:00
2019-08-17 13:06:02 +00:00
public function isEmpty()
{
2019-08-17 13:06:02 +00:00
- return $this->values === null;
+ return $this->values === [];
}
}
2019-05-26 19:26:33 +00:00
```
<br>
### `BinarySwitchToIfElseRector`
- class: `Rector\CodingStyle\Rector\Switch_\BinarySwitchToIfElseRector`
Changes switch with 2 options to if-else
```diff
-switch ($foo) {
- case 'my string':
- $result = 'ok';
- break;
-
- default:
- $result = 'not ok';
+if ($foo == 'my string') {
+ $result = 'ok;
+} else {
+ $result = 'not ok';
}
```
<br>
### `CatchExceptionNameMatchingTypeRector`
- class: `Rector\CodingStyle\Rector\Catch_\CatchExceptionNameMatchingTypeRector`
Type and name of catch exception should match
```diff
2019-05-29 13:40:20 +00:00
class SomeClass
{
public function run()
{
try {
// ...
- } catch (SomeException $typoException) {
- $typoException->getMessage();
+ } catch (SomeException $someException) {
+ $someException->getMessage();
2019-05-29 13:40:20 +00:00
}
}
}
```
<br>
### `ConsistentImplodeRector`
- class: `Rector\CodingStyle\Rector\FuncCall\ConsistentImplodeRector`
Changes various implode forms to consistent one
```diff
class SomeClass
{
public function run(array $items)
{
- $itemsAsStrings = implode($items);
- $itemsAsStrings = implode($items, '|');
+ $itemsAsStrings = implode('', $items);
+ $itemsAsStrings = implode('|', $items);
$itemsAsStrings = implode('|', $items);
}
}
```
<br>
### `ConsistentPregDelimiterRector`
- class: `Rector\CodingStyle\Rector\FuncCall\ConsistentPregDelimiterRector`
Replace PREG delimiter with configured one
```diff
2019-03-09 13:24:30 +00:00
class SomeClass
{
2019-03-09 13:24:30 +00:00
public function run()
{
- preg_match('~value~', $value);
- preg_match_all('~value~im', $value);
+ preg_match('#value#', $value);
+ preg_match_all('#value#im', $value);
2019-03-09 13:24:30 +00:00
}
}
```
<br>
2019-08-05 21:10:47 +00:00
### `EncapsedStringsToSprintfRector`
- class: `Rector\CodingStyle\Rector\Encapsed\EncapsedStringsToSprintfRector`
Convert enscaped {$string} to more readable sprintf
```diff
final class SomeClass
{
public function run(string $format)
{
- return "Unsupported format {$format}";
+ return sprintf('Unsupported format %s', $format);
}
}
```
<br>
### `FollowRequireByDirRector`
2019-05-01 23:56:58 +00:00
- class: `Rector\CodingStyle\Rector\Include_\FollowRequireByDirRector`
2019-05-01 23:56:58 +00:00
include/require should be followed by absolute path
2019-05-01 23:56:58 +00:00
```diff
class SomeClass
{
public function run()
2019-05-01 23:56:58 +00:00
{
- require 'autoload.php';
+ require __DIR__ . '/autoload.php';
2019-05-01 23:56:58 +00:00
}
}
```
<br>
### `IdenticalFalseToBooleanNotRector`
2019-05-01 23:56:58 +00:00
- class: `Rector\CodingStyle\Rector\Identical\IdenticalFalseToBooleanNotRector`
2019-05-01 23:56:58 +00:00
Changes === false to negate !
```diff
2019-05-29 13:40:20 +00:00
-if ($something === false) {}
+if (! $something) {}
```
<br>
2019-05-29 13:40:20 +00:00
### `ImportFullyQualifiedNamesRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\CodingStyle\Rector\Namespace_\ImportFullyQualifiedNamesRector`
2019-05-29 13:40:20 +00:00
Import fully qualified names to use statements
```diff
2019-05-29 13:40:20 +00:00
+use SomeAnother\AnotherClass;
+
class SomeClass
{
2019-05-29 13:40:20 +00:00
public function create()
{
2019-05-29 13:40:20 +00:00
- return SomeAnother\AnotherClass;
+ return AnotherClass;
}
}
```
<br>
2019-08-05 21:10:47 +00:00
### `ManualJsonStringToJsonEncodeArrayRector`
- class: `Rector\CodingStyle\Rector\String_\ManualJsonStringToJsonEncodeArrayRector`
Add extra space before new assign set
```diff
final class SomeClass
{
public function run()
{
- $someJsonAsString = '{"role_name":"admin","numberz":{"id":"10"}}';
+ $data = [
+ 'role_name' => 'admin',
+ 'numberz' => ['id' => 10]
+ ];
+
2019-08-17 13:06:02 +00:00
+ $someJsonAsString = Nette\Utils\Json::encode($data);
2019-08-05 21:10:47 +00:00
}
}
```
<br>
### `NewlineBeforeNewAssignSetRector`
- class: `Rector\CodingStyle\Rector\ClassMethod\NewlineBeforeNewAssignSetRector`
Add extra space before new assign set
```diff
final class SomeClass
{
public function run()
{
$value = new Value;
$value->setValue(5);
+
$value2 = new Value;
$value2->setValue(1);
}
}
```
<br>
### `NullableCompareToNullRector`
- class: `Rector\CodingStyle\Rector\If_\NullableCompareToNullRector`
Changes negate of empty comparison of nullable value to explicit === or !== compare
```diff
/** @var stdClass|null $value */
-if ($value) {
+if ($value !== null) {
}
-if (!$value) {
+if ($value === null) {
}
```
<br>
### `RemoveUnusedAliasRector`
- class: `Rector\CodingStyle\Rector\Use_\RemoveUnusedAliasRector`
Removes unused use aliases
```diff
-use Symfony\Kernel as BaseKernel;
+use Symfony\Kernel;
-class SomeClass extends BaseKernel
+class SomeClass extends Kernel
{
}
```
<br>
### `ReturnArrayClassMethodToYieldRector`
- class: `Rector\CodingStyle\Rector\ClassMethod\ReturnArrayClassMethodToYieldRector`
Turns yield return to array return in specific type and method
```yaml
services:
Rector\CodingStyle\Rector\ClassMethod\ReturnArrayClassMethodToYieldRector:
EventSubscriberInterface:
- getSubscribedEvents
```
```diff
class SomeEventSubscriber implements EventSubscriberInterface
{
public static function getSubscribedEvents()
{
- yield 'event' => 'callback';
+ return ['event' => 'callback'];
}
}
```
<br>
### `SimpleArrayCallableToStringRector`
- class: `Rector\CodingStyle\Rector\FuncCall\SimpleArrayCallableToStringRector`
Changes redundant anonymous bool functions to simple calls
```diff
-$paths = array_filter($paths, function ($path): bool {
- return is_dir($path);
-});
+array_filter($paths, "is_dir");
2019-05-29 13:40:20 +00:00
```
2019-05-29 13:40:20 +00:00
<br>
### `SplitDoubleAssignRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\CodingStyle\Rector\Assign\SplitDoubleAssignRector`
2019-05-29 13:40:20 +00:00
Split multiple inline assigns to each own lines default value, to prevent undefined array issues
2019-05-29 13:40:20 +00:00
```diff
class SomeClass
{
public function run()
{
- $one = $two = 1;
+ $one = 1;
+ $two = 1;
2019-05-29 13:40:20 +00:00
}
}
```
<br>
2019-05-01 23:56:58 +00:00
### `SplitGroupedConstantsAndPropertiesRector`
- class: `Rector\CodingStyle\Rector\ClassConst\SplitGroupedConstantsAndPropertiesRector`
Separate constant and properties to own lines
```diff
class SomeClass
{
- const HI = true, AHOJ = 'true';
+ const HI = true;
+ const AHOJ = 'true';
/**
* @var string
*/
- public $isIt, $isIsThough;
+ public $isIt;
+
+ /**
+ * @var string
+ */
+ public $isIsThough;
}
```
<br>
### `SplitStringClassConstantToClassConstFetchRector`
- class: `Rector\CodingStyle\Rector\String_\SplitStringClassConstantToClassConstFetchRector`
Separate class constant in a string to class constant fetch and string
```diff
class SomeClass
{
const HI = true;
}
class AnotherClass
{
public function get()
{
- return 'SomeClass::HI';
+ return SomeClass::class . '::HI';
}
}
```
<br>
### `SymplifyQuoteEscapeRector`
- class: `Rector\CodingStyle\Rector\String_\SymplifyQuoteEscapeRector`
2018-10-21 22:26:45 +00:00
Prefer quote that not inside the string
2018-10-21 22:26:45 +00:00
```diff
class SomeClass
{
public function run()
{
- $name = "\" Tom";
- $name = '\' Sara';
+ $name = '" Tom';
+ $name = "' Sara";
}
}
```
<br>
### `VarConstantCommentRector`
- class: `Rector\CodingStyle\Rector\ClassConst\VarConstantCommentRector`
Constant should have a @var comment with type
```diff
class SomeClass
{
+ /**
+ * @var string
+ */
const HI = 'hi';
}
2018-10-21 22:26:45 +00:00
```
<br>
2018-10-21 22:26:45 +00:00
2019-05-29 13:40:20 +00:00
### `YieldClassMethodToArrayClassMethodRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\CodingStyle\Rector\ClassMethod\YieldClassMethodToArrayClassMethodRector`
2019-05-29 13:40:20 +00:00
Turns yield return to array return in specific type and method
```yaml
services:
Rector\CodingStyle\Rector\ClassMethod\YieldClassMethodToArrayClassMethodRector:
EventSubscriberInterface:
- getSubscribedEvents
```
```diff
2019-05-29 13:40:20 +00:00
class SomeEventSubscriber implements EventSubscriberInterface
{
public static function getSubscribedEvents()
{
- yield 'event' => 'callback';
+ return ['event' => 'callback'];
}
}
```
<br>
## DeadCode
### `RemoveAlwaysTrueIfConditionRector`
- class: `Rector\DeadCode\Rector\If_\RemoveAlwaysTrueIfConditionRector`
Remove if condition that is always true
```diff
final class SomeClass
{
public function go()
{
- if (1 === 1) {
- return 'yes';
- }
+ return 'yes';
return 'no';
}
}
```
<br>
### `RemoveAndTrueRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\DeadCode\Rector\BooleanAnd\RemoveAndTrueRector`
2019-05-29 13:40:20 +00:00
Remove and true that has no added value
```diff
class SomeClass
2019-05-29 13:40:20 +00:00
{
public function run()
2019-05-29 13:40:20 +00:00
{
- return true && 5 === 1;
+ return 5 === 1;
2019-05-29 13:40:20 +00:00
}
}
```
<br>
### `RemoveCodeAfterReturnRector`
- class: `Rector\DeadCode\Rector\FunctionLike\RemoveCodeAfterReturnRector`
Remove dead code after return statement
```diff
class SomeClass
{
public function run(int $a)
{
return $a;
- $a++;
}
}
```
<br>
2019-06-06 13:01:53 +00:00
### `RemoveConcatAutocastRector`
- class: `Rector\DeadCode\Rector\Concat\RemoveConcatAutocastRector`
Remove (string) casting when it comes to concat, that does this by default
```diff
class SomeConcatingClass
{
public function run($value)
{
- return 'hi ' . (string) $value;
+ return 'hi ' . $value;
}
}
```
<br>
### `RemoveDeadConstructorRector`
- class: `Rector\DeadCode\Rector\ClassMethod\RemoveDeadConstructorRector`
Remove empty constructor
```diff
class SomeClass
{
- public function __construct()
- {
- }
}
```
<br>
2018-12-25 19:55:16 +00:00
### `RemoveDeadIfForeachForRector`
2018-12-25 19:55:16 +00:00
- class: `Rector\DeadCode\Rector\For_\RemoveDeadIfForeachForRector`
2018-12-25 19:55:16 +00:00
Remove if, foreach and for that does not do anything
2018-12-25 19:55:16 +00:00
```diff
2019-05-29 13:40:20 +00:00
class SomeClass
{
public function run($someObject)
{
$value = 5;
- if ($value) {
- }
-
if ($someObject->run()) {
- }
-
- foreach ($values as $value) {
}
return $value;
}
}
2018-12-25 19:55:16 +00:00
```
<br>
2019-05-29 13:40:20 +00:00
### `RemoveDeadReturnRector`
2018-12-25 19:55:16 +00:00
2019-05-29 13:40:20 +00:00
- class: `Rector\DeadCode\Rector\FunctionLike\RemoveDeadReturnRector`
2018-12-25 19:55:16 +00:00
2019-05-29 13:40:20 +00:00
Remove last return in the functions, since does not do anything
2018-12-25 19:55:16 +00:00
```diff
2019-05-29 13:40:20 +00:00
class SomeClass
2018-12-25 19:55:16 +00:00
{
2019-05-29 13:40:20 +00:00
public function run()
{
$shallWeDoThis = true;
if ($shallWeDoThis) {
return;
}
-
- return;
}
2018-12-25 19:55:16 +00:00
}
```
<br>
### `RemoveDeadStmtRector`
2018-12-31 11:50:32 +00:00
- class: `Rector\DeadCode\Rector\Stmt\RemoveDeadStmtRector`
2018-12-31 11:50:32 +00:00
Removes dead code statements
2018-12-31 11:50:32 +00:00
```diff
-$value = 5;
-$value;
+$value = 5;
2018-12-31 11:50:32 +00:00
```
<br>
### `RemoveDeadZeroAndOneOperationRector`
- class: `Rector\DeadCode\Rector\Plus\RemoveDeadZeroAndOneOperationRector`
```diff
class SomeClass
{
public function run()
{
- $value = 5 * 1;
- $value = 5 + 0;
+ $value = 5;
+ $value = 5;
}
}
```
<br>
### `RemoveDefaultArgumentValueRector`
2019-03-09 13:24:30 +00:00
- class: `Rector\DeadCode\Rector\MethodCall\RemoveDefaultArgumentValueRector`
2019-03-09 13:24:30 +00:00
Remove argument value, if it is the same as default value
2019-03-09 13:24:30 +00:00
```diff
class SomeClass
{
2019-05-29 13:40:20 +00:00
public function run()
{
- $this->runWithDefault([]);
- $card = self::runWithStaticDefault([]);
+ $this->runWithDefault();
+ $card = self::runWithStaticDefault();
2019-05-29 13:40:20 +00:00
}
2019-02-21 14:36:16 +00:00
public function runWithDefault($items = [])
{
return $items;
}
2019-02-21 14:36:16 +00:00
public function runStaticWithDefault($cards = [])
2019-02-21 14:36:16 +00:00
{
return $cards;
2019-02-21 14:36:16 +00:00
}
}
```
<br>
### `RemoveDelegatingParentCallRector`
- class: `Rector\DeadCode\Rector\ClassMethod\RemoveDelegatingParentCallRector`
```diff
class SomeClass
{
- public function prettyPrint(array $stmts): string
- {
- return parent::prettyPrint($stmts);
- }
}
```
<br>
### `RemoveDoubleAssignRector`
2019-02-18 15:51:24 +00:00
- class: `Rector\DeadCode\Rector\Assign\RemoveDoubleAssignRector`
2019-02-18 15:51:24 +00:00
Simplify useless double assigns
2019-02-18 15:51:24 +00:00
```diff
-$value = 1;
$value = 1;
2019-02-18 15:51:24 +00:00
```
<br>
### `RemoveDuplicatedArrayKeyRector`
2019-05-19 08:27:38 +00:00
- class: `Rector\DeadCode\Rector\Array_\RemoveDuplicatedArrayKeyRector`
2019-05-19 08:27:38 +00:00
Remove duplicated key in defined arrays.
2019-05-19 08:27:38 +00:00
```diff
$item = [
- 1 => 'A',
1 => 'B'
];
2019-05-19 08:27:38 +00:00
```
<br>
2019-08-05 21:10:47 +00:00
### `RemoveDuplicatedCaseInSwitchRector`
- class: `Rector\DeadCode\Rector\Switch_\RemoveDuplicatedCaseInSwitchRector`
2 following switch keys with identical will be reduced to one result
```diff
class SomeClass
{
public function run()
{
switch ($name) {
case 'clearHeader':
return $this->modifyHeader($node, 'remove');
case 'clearAllHeaders':
- return $this->modifyHeader($node, 'replace');
case 'clearRawHeaders':
return $this->modifyHeader($node, 'replace');
case '...':
return 5;
}
}
}
```
<br>
### `RemoveDuplicatedInstanceOfRector`
- class: `Rector\DeadCode\Rector\Instanceof_\RemoveDuplicatedInstanceOfRector`
```diff
class SomeClass
{
public function run($value)
{
- $isIt = $value instanceof A || $value instanceof A;
- $isIt = $value instanceof A && $value instanceof A;
+ $isIt = $value instanceof A;
+ $isIt = $value instanceof A;
}
}
```
<br>
### `RemoveEmptyClassMethodRector`
2019-03-31 12:25:39 +00:00
- class: `Rector\DeadCode\Rector\ClassMethod\RemoveEmptyClassMethodRector`
2019-03-31 12:25:39 +00:00
Remove empty method calls not required by parents
2019-03-31 12:25:39 +00:00
```diff
class OrphanClass
{
- public function __construct()
- {
- }
}
2019-03-31 12:25:39 +00:00
```
<br>
2019-08-24 11:08:59 +00:00
### `RemoveNullPropertyInitializationRector`
- class: `Rector\DeadCode\Rector\Property\RemoveNullPropertyInitializationRector`
Remove initialization with null value from property declarations
```diff
class SunshineCommand extends ParentClassWithNewConstructor
{
- private $myVar = null;
+ private $myVar;
}
```
<br>
### `RemoveOverriddenValuesRector`
2018-12-25 19:55:16 +00:00
- class: `Rector\DeadCode\Rector\ClassMethod\RemoveOverriddenValuesRector`
2018-12-25 19:55:16 +00:00
Remove initial assigns of overridden values
2018-12-25 19:55:16 +00:00
```diff
2019-05-29 13:40:20 +00:00
final class SomeController
2018-12-25 19:55:16 +00:00
{
2019-05-29 13:40:20 +00:00
public function run()
{
- $directories = [];
$possibleDirectories = [];
$directories = array_filter($possibleDirectories, 'file_exists');
2019-05-29 13:40:20 +00:00
}
2018-12-25 19:55:16 +00:00
}
```
<br>
### `RemoveParentCallWithoutParentRector`
2018-12-25 19:55:16 +00:00
- class: `Rector\DeadCode\Rector\StaticCall\RemoveParentCallWithoutParentRector`
2018-12-25 19:55:16 +00:00
Remove unused parent call with no parent class
2018-12-25 19:55:16 +00:00
```diff
class OrphanClass
2019-05-29 13:40:20 +00:00
{
public function __construct()
{
- parent::__construct();
}
2019-05-29 13:40:20 +00:00
}
2018-12-25 19:55:16 +00:00
```
<br>
2019-08-17 13:06:02 +00:00
### `RemoveSetterOnlyPropertyAndMethodCallRector`
- class: `Rector\DeadCode\Rector\Class_\RemoveSetterOnlyPropertyAndMethodCallRector`
Removes method that set values that are never used
```diff
class SomeClass
{
- private $name;
-
- public function setName($name)
- {
- $this->name = $name;
- }
}
class ActiveOnlySetter
{
public function run()
{
$someClass = new SomeClass();
- $someClass->setName('Tom');
}
}
```
<br>
2019-08-05 21:10:47 +00:00
### `RemoveUnusedDoctrineEntityMethodAndPropertyRector`
- class: `Rector\DeadCode\Rector\Class_\RemoveUnusedDoctrineEntityMethodAndPropertyRector`
Removes unused methods and properties from Doctrine entity classes
```diff
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity
*/
class UserEntity
{
- /**
- * @ORM\Column
- */
- private $name;
-
- public function getName()
- {
- return $this->name;
- }
-
- public function setName($name)
- {
- $this->name = $name;
- }
}
```
<br>
### `RemoveUnusedForeachKeyRector`
2019-05-19 08:27:38 +00:00
- class: `Rector\DeadCode\Rector\Foreach_\RemoveUnusedForeachKeyRector`
2019-05-19 08:27:38 +00:00
Remove unused key in foreach
2019-05-19 08:27:38 +00:00
```diff
$items = [];
-foreach ($items as $key => $value) {
+foreach ($items as $value) {
$result = $value;
2019-05-19 08:27:38 +00:00
}
```
<br>
2019-05-29 13:40:20 +00:00
### `RemoveUnusedParameterRector`
2019-02-21 14:36:16 +00:00
2019-05-29 13:40:20 +00:00
- class: `Rector\DeadCode\Rector\ClassMethod\RemoveUnusedParameterRector`
2019-02-21 14:36:16 +00:00
2019-05-29 13:40:20 +00:00
Remove unused parameter, if not required by interface or parent class
2019-02-21 14:36:16 +00:00
```diff
2019-05-29 13:40:20 +00:00
class SomeClass
2019-02-21 14:36:16 +00:00
{
2019-05-29 13:40:20 +00:00
- public function __construct($value, $value2)
+ public function __construct($value)
2019-02-21 14:36:16 +00:00
{
2019-05-29 13:40:20 +00:00
$this->value = $value;
2019-02-21 14:36:16 +00:00
}
}
```
<br>
### `RemoveUnusedPrivateConstantRector`
2019-02-21 14:36:16 +00:00
- class: `Rector\DeadCode\Rector\ClassConst\RemoveUnusedPrivateConstantRector`
2019-02-21 14:36:16 +00:00
Remove unused private constant
2019-02-21 14:36:16 +00:00
```diff
2019-05-29 13:40:20 +00:00
final class SomeController
2019-02-21 14:36:16 +00:00
{
- private const SOME_CONSTANT = 5;
2019-05-29 13:40:20 +00:00
public function run()
2019-02-21 14:36:16 +00:00
{
return 5;
2019-02-21 14:36:16 +00:00
}
}
```
<br>
### `RemoveUnusedPrivateMethodRector`
2019-03-31 12:25:39 +00:00
- class: `Rector\DeadCode\Rector\ClassMethod\RemoveUnusedPrivateMethodRector`
2019-03-31 12:25:39 +00:00
Remove unused private method
2019-03-31 12:25:39 +00:00
```diff
final class SomeController
2019-03-31 12:25:39 +00:00
{
public function run()
{
return 5;
}
-
- private function skip()
2019-05-29 13:40:20 +00:00
- {
- return 10;
2019-05-29 13:40:20 +00:00
- }
2019-03-31 12:25:39 +00:00
}
```
<br>
### `RemoveUnusedPrivatePropertyRector`
2018-12-25 19:55:16 +00:00
- class: `Rector\DeadCode\Rector\Property\RemoveUnusedPrivatePropertyRector`
2018-12-25 19:55:16 +00:00
Remove unused private properties
2018-12-25 19:55:16 +00:00
```diff
2019-05-29 13:40:20 +00:00
class SomeClass
{
- private $property;
2019-05-29 13:40:20 +00:00
}
2018-12-25 19:55:16 +00:00
```
<br>
### `RemoveZeroAndOneBinaryRector`
- class: `Rector\DeadCode\Rector\Plus\RemoveZeroAndOneBinaryRector`
```diff
class SomeClass
{
public function run()
{
- $value = 5 * 1;
- $value = 5 + 0;
+ $value = 5;
+ $value = 5;
}
}
```
<br>
### `SimplifyMirrorAssignRector`
- class: `Rector\DeadCode\Rector\Expression\SimplifyMirrorAssignRector`
Removes unneeded $a = $a assigns
```diff
-$a = $a;
```
<br>
2018-08-01 20:09:34 +00:00
## Doctrine
### `AddUuidMirrorForRelationPropertyRector`
- class: `Rector\Doctrine\Rector\Class_\AddUuidMirrorForRelationPropertyRector`
Adds $uuid property to entities, that already have $id with integer type.Require for step-by-step migration from int to uuid.
<br>
### `AddUuidToEntityWhereMissingRector`
- class: `Rector\Doctrine\Rector\Class_\AddUuidToEntityWhereMissingRector`
2018-08-01 20:09:34 +00:00
Adds $uuid property to entities, that already have $id with integer type.Require for step-by-step migration from int to uuid. In following step it should be renamed to $id and replace it
<br>
### `EntityAliasToClassConstantReferenceRector`
- class: `Rector\Doctrine\Rector\MethodCall\EntityAliasToClassConstantReferenceRector`
2018-08-01 20:09:34 +00:00
Replaces doctrine alias with class.
```diff
2018-08-10 19:07:08 +00:00
$entityManager = new Doctrine\ORM\EntityManager();
-$entityManager->getRepository("AppBundle:Post");
+$entityManager->getRepository(\App\Entity\Post::class);
2018-08-01 20:09:34 +00:00
```
2018-07-31 21:47:59 +00:00
<br>
### `ManagerRegistryGetManagerToEntityManagerRector`
- class: `Rector\Doctrine\Rector\Class_\ManagerRegistryGetManagerToEntityManagerRector`
```diff
-use Doctrine\Common\Persistence\ManagerRegistry;
+use Doctrine\ORM\EntityManagerInterface;
class CustomRepository
{
/**
- * @var ManagerRegistry
+ * @var EntityManagerInterface
*/
- private $managerRegistry;
+ private $entityManager;
- public function __construct(ManagerRegistry $managerRegistry)
+ public function __construct(EntityManagerInterface $entityManager)
{
- $this->managerRegistry = $managerRegistry;
+ $this->entityManager = $entityManager;
}
public function run()
{
- $entityManager = $this->managerRegistry->getManager();
- $someRepository = $entityManager->getRepository('Some');
+ $someRepository = $this->entityManager->getRepository('Some');
}
}
```
<br>
## ElasticSearchDSL
### `MigrateFilterToQueryRector`
- class: `Rector\ElasticSearchDSL\Rector\MethodCall\MigrateFilterToQueryRector`
Migrates addFilter to addQuery
```diff
class SomeClass
{
public function run()
{
$search = new \ONGR\ElasticsearchDSL\Search();
- $search->addFilter(
- new \ONGR\ElasticsearchDSL\Query\TermsQuery('categoryIds', [1, 2])
+ $search->addQuery(
+ new \ONGR\ElasticsearchDSL\Query\TermsQuery('categoryIds', [1, 2]),
+ \ONGR\ElasticsearchDSL\Query\Compound\BoolQuery::FILTER
);
}
}
```
<br>
## Guzzle
### `MessageAsArrayRector`
- class: `Rector\Guzzle\Rector\MethodCall\MessageAsArrayRector`
Changes getMessage(..., true) to getMessageAsArray()
```diff
/** @var GuzzleHttp\Message\MessageInterface */
-$value = $message->getMessage('key', true);
+$value = $message->getMessageAsArray('key');
```
<br>
2019-03-09 13:24:30 +00:00
## Laravel
### `FacadeStaticCallToConstructorInjectionRector`
2019-03-09 13:24:30 +00:00
- class: `Rector\Laravel\Rector\StaticCall\FacadeStaticCallToConstructorInjectionRector`
2019-03-09 13:24:30 +00:00
Move Illuminate\Support\Facades\* static calls to constructor injection
2019-03-09 13:24:30 +00:00
```diff
use Illuminate\Support\Facades\Response;
class ExampleController extends Controller
2019-03-09 13:24:30 +00:00
{
+ /**
+ * @var \Illuminate\Contracts\Routing\ResponseFactory
+ */
+ private $responseFactory;
+
+ public function __construct(\Illuminate\Contracts\Routing\ResponseFactory $responseFactory)
+ {
+ $this->responseFactory = $responseFactory;
+ }
+
public function store()
2019-03-09 13:24:30 +00:00
{
- return Response::view('example', ['new_example' => 123]);
+ return $this->responseFactory->view('example', ['new_example' => 123]);
2019-03-09 13:24:30 +00:00
}
}
```
<br>
### `HelperFunctionToConstructorInjectionRector`
2019-03-09 13:24:30 +00:00
- class: `Rector\Laravel\Rector\FuncCall\HelperFunctionToConstructorInjectionRector`
2019-03-09 13:24:30 +00:00
Move help facade-like function calls to constructor injection
2019-03-09 13:24:30 +00:00
```diff
class SomeController
2019-03-09 13:24:30 +00:00
{
+ /**
+ * @var \Illuminate\Contracts\View\Factory
2019-03-09 13:24:30 +00:00
+ */
+ private $viewFactory;
2019-03-09 13:24:30 +00:00
+
+ public function __construct(\Illuminate\Contracts\View\Factory $viewFactory)
2019-03-09 13:24:30 +00:00
+ {
+ $this->viewFactory = $viewFactory;
2019-03-09 13:24:30 +00:00
+ }
+
public function action()
2019-03-09 13:24:30 +00:00
{
- $template = view('template.blade');
- $viewFactory = view();
+ $template = $this->viewFactory->make('template.blade');
+ $viewFactory = $this->viewFactory;
}
}
```
<br>
### `MinutesToSecondsInCacheRector`
- class: `Rector\Laravel\Rector\StaticCall\MinutesToSecondsInCacheRector`
Change minutes argument to seconds in Illuminate\Contracts\Cache\Store and Illuminate\Support\Facades\Cache
```diff
class SomeClass
{
public function run()
{
- Illuminate\Support\Facades\Cache::put('key', 'value', 60);
+ Illuminate\Support\Facades\Cache::put('key', 'value', 60 * 60);
2019-03-09 13:24:30 +00:00
}
}
```
<br>
### `Redirect301ToPermanentRedirectRector`
- class: `Rector\Laravel\Rector\StaticCall\Redirect301ToPermanentRedirectRector`
Change "redirect" call with 301 to "permanentRedirect"
```diff
class SomeClass
{
public function run()
{
- Illuminate\Routing\Route::redirect('/foo', '/bar', 301);
+ Illuminate\Routing\Route::permanentRedirect('/foo', '/bar');
}
}
```
<br>
### `RequestStaticValidateToInjectRector`
- class: `Rector\Laravel\Rector\StaticCall\RequestStaticValidateToInjectRector`
Change static validate() method to $request->validate()
```diff
use Illuminate\Http\Request;
class SomeClass
{
- public function store()
+ public function store(\Illuminate\Http\Request $request)
{
- $validatedData = Request::validate(['some_attribute' => 'required']);
+ $validatedData = $request->validate(['some_attribute' => 'required']);
}
}
```
<br>
## Legacy
### `ChangeSingletonToServiceRector`
- class: `Rector\Legacy\Rector\ClassMethod\ChangeSingletonToServiceRector`
Change singleton class to normal class that can be registered as a service
```diff
class SomeClass
{
- private static $instance;
-
- private function __construct()
+ public function __construct()
{
- }
-
- public static function getInstance()
- {
- if (null === static::$instance) {
- static::$instance = new static();
- }
-
- return static::$instance;
}
}
```
<br>
2019-02-21 14:36:16 +00:00
## MysqlToMysqli
### `MysqlAssignToMysqliRector`
- class: `Rector\MysqlToMysqli\Rector\Assign\MysqlAssignToMysqliRector`
Converts more complex mysql functions to mysqli
```diff
-$data = mysql_db_name($result, $row);
+mysqli_data_seek($result, $row);
+$fetch = mysql_fetch_row($result);
+$data = $fetch[0];
```
<br>
### `MysqlFuncCallToMysqliRector`
- class: `Rector\MysqlToMysqli\Rector\FuncCall\MysqlFuncCallToMysqliRector`
Converts more complex mysql functions to mysqli
```diff
-mysql_drop_db($database);
+mysqli_query('DROP DATABASE ' . $database);
```
<br>
### `MysqlPConnectToMysqliConnectRector`
- class: `Rector\MysqlToMysqli\Rector\FuncCall\MysqlPConnectToMysqliConnectRector`
Replace mysql_pconnect() with mysqli_connect() with host p: prefix
```diff
final class SomeClass
{
public function run($host, $username, $password)
{
- return mysql_pconnect($host, $username, $password);
+ return mysqli_connect('p:' . $host, $username, $password);
}
}
```
<br>
2019-04-02 13:35:35 +00:00
## Nette
### `EndsWithFunctionToNetteUtilsStringsRector`
2019-04-02 13:35:35 +00:00
- class: `Rector\Nette\Rector\Identical\EndsWithFunctionToNetteUtilsStringsRector`
2019-04-02 13:35:35 +00:00
Use Nette\Utils\Strings over bare string-functions
```diff
class SomeClass
{
public function end($needle)
2019-04-02 13:35:35 +00:00
{
2019-05-29 13:40:20 +00:00
$content = 'Hi, my name is Tom';
- $yes = substr($content, -strlen($needle)) === $needle;
- $no = $needle !== substr($content, -strlen($needle));
+ $yes = \Nette\Utils\Strings::endsWith($content, $needle);
+ $no = !\Nette\Utils\Strings::endsWith($content, $needle);
2019-04-02 13:35:35 +00:00
}
}
```
<br>
2019-08-17 13:06:02 +00:00
### `JsonDecodeEncodeToNetteUtilsJsonDecodeEncodeRector`
- class: `Rector\Nette\Rector\FuncCall\JsonDecodeEncodeToNetteUtilsJsonDecodeEncodeRector`
Changes json_encode()/json_decode() to safer and more verbose Nette\Utils\Json::encode()/decode() calls
```diff
class SomeClass
{
public function decodeJson(string $jsonString)
{
- $stdClass = json_decode($jsonString);
+ $stdClass = \Nette\Utils\Json::decode($jsonString);
- $array = json_decode($jsonString, true);
- $array = json_decode($jsonString, false);
+ $array = \Nette\Utils\Json::decode($jsonString, \Nette\Utils\Json::FORCE_ARRAY);
+ $array = \Nette\Utils\Json::decode($jsonString);
}
public function encodeJson(array $data)
{
- $jsonString = json_encode($data);
+ $jsonString = \Nette\Utils\Json::encode($data);
- $prettyJsonString = json_encode($data, JSON_PRETTY_PRINT);
+ $prettyJsonString = \Nette\Utils\Json::encode($data, \Nette\Utils\Json::PRETTY);
}
}
```
<br>
### `PregFunctionToNetteUtilsStringsRector`
2019-04-02 13:35:35 +00:00
- class: `Rector\Nette\Rector\FuncCall\PregFunctionToNetteUtilsStringsRector`
2019-04-02 13:35:35 +00:00
Use Nette\Utils\Strings over bare preg_* functions
2019-04-02 13:35:35 +00:00
```diff
class SomeClass
{
public function run()
2019-04-02 13:35:35 +00:00
{
$content = 'Hi my name is Tom';
- preg_match('#Hi#', $content);
+ \Nette\Utils\Strings::match($content, '#Hi#');
2019-04-02 13:35:35 +00:00
}
}
```
<br>
### `StartsWithFunctionToNetteUtilsStringsRector`
2019-04-02 13:35:35 +00:00
- class: `Rector\Nette\Rector\Identical\StartsWithFunctionToNetteUtilsStringsRector`
2019-04-02 13:35:35 +00:00
Use Nette\Utils\Strings over bare string-functions
```diff
class SomeClass
{
public function start($needle)
2019-04-02 13:35:35 +00:00
{
$content = 'Hi, my name is Tom';
- $yes = substr($content, 0, strlen($needle)) === $needle;
- $no = $needle !== substr($content, 0, strlen($needle));
+ $yes = \Nette\Utils\Strings::startwith($content, $needle);
+ $no = !\Nette\Utils\Strings::startwith($content, $needle);
2019-04-02 13:35:35 +00:00
}
}
```
<br>
### `StrposToStringsContainsRector`
2019-04-02 13:35:35 +00:00
- class: `Rector\Nette\Rector\NotIdentical\StrposToStringsContainsRector`
2019-04-02 13:35:35 +00:00
Use Nette\Utils\Strings over bare string-functions
2019-04-02 13:35:35 +00:00
```diff
class SomeClass
{
2019-05-29 13:40:20 +00:00
public function run()
2019-04-02 13:35:35 +00:00
{
$name = 'Hi, my name is Tom';
- return strpos($name, 'Hi') !== false;
+ return \Nette\Utils\Strings::contains($name, 'Hi');
2019-04-02 13:35:35 +00:00
}
}
```
<br>
### `SubstrStrlenFunctionToNetteUtilsStringsRector`
2019-04-02 13:35:35 +00:00
- class: `Rector\Nette\Rector\FuncCall\SubstrStrlenFunctionToNetteUtilsStringsRector`
2019-04-02 13:35:35 +00:00
Use Nette\Utils\Strings over bare string-functions
```diff
class SomeClass
{
2019-05-29 13:40:20 +00:00
public function run()
2019-04-02 13:35:35 +00:00
{
- return substr($value, 0, 3);
+ return \Nette\Utils\Strings::substring($value, 0, 3);
2019-04-02 13:35:35 +00:00
}
}
```
<br>
2019-03-16 20:31:46 +00:00
## NetteTesterToPHPUnit
### `NetteAssertToPHPUnitAssertRector`
- class: `Rector\NetteTesterToPHPUnit\Rector\StaticCall\NetteAssertToPHPUnitAssertRector`
Migrate Nette/Assert calls to PHPUnit
```diff
use Tester\Assert;
function someStaticFunctions()
{
- Assert::true(10 == 5);
+ \PHPUnit\Framework\Assert::assertTrue(10 == 5);
}
```
<br>
2019-03-16 20:31:46 +00:00
### `NetteTesterClassToPHPUnitClassRector`
- class: `Rector\NetteTesterToPHPUnit\Rector\Class_\NetteTesterClassToPHPUnitClassRector`
Migrate Nette Tester test case to PHPUnit
```diff
namespace KdybyTests\Doctrine;
use Tester\TestCase;
use Tester\Assert;
-require_once __DIR__ . '/../bootstrap.php';
-
-class ExtensionTest extends TestCase
+class ExtensionTest extends \PHPUnit\Framework\TestCase
{
public function testFunctionality()
{
- Assert::true($default instanceof Kdyby\Doctrine\EntityManager);
- Assert::true(5);
- Assert::same($container->getService('kdyby.doctrine.default.entityManager'), $default);
2019-03-31 12:25:39 +00:00
+ $this->assertInstanceOf(\Kdyby\Doctrine\EntityManager::cllass, $default);
+ $this->assertTrue(5);
+ $this->same($container->getService('kdyby.doctrine.default.entityManager'), $default);
2019-03-16 20:31:46 +00:00
}
-}
-
-(new \ExtensionTest())->run();
+}
```
<br>
### `RenameTesterTestToPHPUnitToTestFileRector`
2019-02-02 16:22:15 +00:00
- class: `Rector\NetteTesterToPHPUnit\Rector\RenameTesterTestToPHPUnitToTestFileRector`
2019-02-02 16:22:15 +00:00
Rename "*.phpt" file to "*Test.php" file
2019-02-02 16:22:15 +00:00
<br>
2019-02-02 16:22:15 +00:00
## NetteToSymfony
2019-02-02 16:22:15 +00:00
### `FromHttpRequestGetHeaderToHeadersGetRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\NetteToSymfony\Rector\MethodCall\FromHttpRequestGetHeaderToHeadersGetRector`
2019-05-29 13:40:20 +00:00
Changes getHeader() to $request->headers->get()
2019-05-29 13:40:20 +00:00
```diff
use Nette\Request;
2019-05-29 13:40:20 +00:00
final class SomeController
{
public static function someAction(Request $request)
{
- $header = $this->httpRequest->getHeader('x');
+ $header = $request->headers->get('x');
}
}
```
2019-05-29 13:40:20 +00:00
<br>
2019-05-29 13:40:20 +00:00
### `FromRequestGetParameterToAttributesGetRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\NetteToSymfony\Rector\MethodCall\FromRequestGetParameterToAttributesGetRector`
2019-05-29 13:40:20 +00:00
Changes "getParameter()" to "attributes->get()" from Nette to Symfony
2019-05-29 13:40:20 +00:00
```diff
use Nette\Request;
2019-05-29 13:40:20 +00:00
final class SomeController
2019-02-02 16:22:15 +00:00
{
public static function someAction(Request $request)
2019-02-02 16:22:15 +00:00
{
- $value = $request->getParameter('abz');
+ $value = $request->attribute->get('abz');
2019-02-02 16:22:15 +00:00
}
}
```
<br>
2019-05-29 13:40:20 +00:00
### `NetteControlToSymfonyControllerRector`
2019-02-18 15:51:24 +00:00
2019-05-29 13:40:20 +00:00
- class: `Rector\NetteToSymfony\Rector\Class_\NetteControlToSymfonyControllerRector`
2019-02-18 15:51:24 +00:00
2019-05-29 13:40:20 +00:00
Migrate Nette Component to Symfony Controller
2019-02-18 15:51:24 +00:00
```diff
2019-05-29 13:40:20 +00:00
use Nette\Application\UI\Control;
2019-02-18 15:51:24 +00:00
2019-05-29 13:40:20 +00:00
-class SomeControl extends Control
+class SomeController extends \Symfony\Bundle\FrameworkBundle\Controller\AbstractController
2019-02-18 15:51:24 +00:00
{
2019-05-29 13:40:20 +00:00
- public function render()
- {
- $this->template->param = 'some value';
- $this->template->render(__DIR__ . '/poll.latte');
- }
+ public function some()
+ {
+ $this->render(__DIR__ . '/poll.latte', ['param' => 'some value']);
+ }
2019-02-18 15:51:24 +00:00
}
```
<br>
### `NetteFormToSymfonyFormRector`
2019-02-18 15:51:24 +00:00
- class: `Rector\NetteToSymfony\Rector\Class_\NetteFormToSymfonyFormRector`
2019-02-18 15:51:24 +00:00
Migrate Nette\Forms in Presenter to Symfony
2019-02-18 15:51:24 +00:00
```diff
use Nette\Application\UI;
2019-02-18 15:51:24 +00:00
class SomePresenter extends UI\Presenter
2019-02-18 15:51:24 +00:00
{
public function someAction()
2019-02-18 15:51:24 +00:00
{
- $form = new UI\Form;
- $form->addText('name', 'Name:');
- $form->addPassword('password', 'Password:');
- $form->addSubmit('login', 'Sign up');
+ $form = $this->createFormBuilder();
+ $form->add('name', \Symfony\Component\Form\Extension\Core\Type\TextType::class, [
+ 'label' => 'Name:'
+ ]);
+ $form->add('password', \Symfony\Component\Form\Extension\Core\Type\PasswordType::class, [
+ 'label' => 'Password:'
+ ]);
+ $form->add('login', \Symfony\Component\Form\Extension\Core\Type\SubmitType::class, [
+ 'label' => 'Sign up'
+ ]);
2019-02-18 15:51:24 +00:00
}
}
```
<br>
2019-05-29 13:40:20 +00:00
### `RenameEventNamesInEventSubscriberRector`
2019-03-31 12:25:39 +00:00
2019-05-29 13:40:20 +00:00
- class: `Rector\NetteToSymfony\Rector\ClassMethod\RenameEventNamesInEventSubscriberRector`
2019-03-31 12:25:39 +00:00
2019-05-29 13:40:20 +00:00
Changes event names from Nette ones to Symfony ones
2019-03-31 12:25:39 +00:00
```diff
2019-05-29 13:40:20 +00:00
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
2019-03-31 12:25:39 +00:00
2019-05-29 13:40:20 +00:00
final class SomeClass implements EventSubscriberInterface
2019-03-31 12:25:39 +00:00
{
2019-05-29 13:40:20 +00:00
public static function getSubscribedEvents()
{
- return ['nette.application' => 'someMethod'];
+ return [\SymfonyEvents::KERNEL => 'someMethod'];
}
2019-03-31 12:25:39 +00:00
}
```
<br>
2019-05-29 13:40:20 +00:00
### `RouterListToControllerAnnotationsRector`
2019-03-31 12:25:39 +00:00
2019-05-29 13:40:20 +00:00
- class: `Rector\NetteToSymfony\Rector\ClassMethod\RouterListToControllerAnnotationsRector`
2019-03-31 12:25:39 +00:00
2019-05-29 13:40:20 +00:00
Change new Route() from RouteFactory to @Route annotation above controller method
2019-03-31 12:25:39 +00:00
```diff
2019-05-29 13:40:20 +00:00
final class RouterFactory
{
public function create(): RouteList
{
$routeList = new RouteList();
+
+ // case of single action controller, usually get() or __invoke() method
$routeList[] = new Route('some-path', SomePresenter::class);
2019-03-31 12:25:39 +00:00
2019-05-29 13:40:20 +00:00
return $routeList;
}
}
final class SomePresenter
2019-03-31 12:25:39 +00:00
{
2019-05-29 13:40:20 +00:00
+ /**
+ * @Symfony\Component\Routing\Annotation\Route(path="some-path")
+ */
public function run()
2019-03-31 12:25:39 +00:00
{
}
}
```
<br>
### `WrapTransParameterNameRector`
- class: `Rector\NetteToSymfony\Rector\MethodCall\WrapTransParameterNameRector`
Adds %% to placeholder name of trans() method if missing
```diff
use Symfony\Component\Translation\Translator;
final class SomeController
{
public function run()
{
$translator = new Translator('');
$translated = $translator->trans(
'Hello %name%',
- ['name' => $name]
+ ['%name%' => $name]
);
}
}
```
<br>
## PHPStan
### `PHPStormVarAnnotationRector`
- class: `Rector\PHPStan\Rector\Assign\PHPStormVarAnnotationRector`
Change various @var annotation formats to one PHPStorm understands
```diff
-$config = 5;
-/** @var \Shopsys\FrameworkBundle\Model\Product\Filter\ProductFilterConfig $config */
+/** @var \Shopsys\FrameworkBundle\Model\Product\Filter\ProductFilterConfig $config */
+$config = 5;
```
<br>
### `RecastingRemovalRector`
- class: `Rector\PHPStan\Rector\Cast\RecastingRemovalRector`
Removes recasting of the same type
```diff
$string = '';
-$string = (string) $string;
+$string = $string;
$array = [];
-$array = (array) $array;
+$array = $array;
```
<br>
2019-08-05 21:10:47 +00:00
### `RemoveNonExistingVarAnnotationRector`
- class: `Rector\PHPStan\Rector\Node\RemoveNonExistingVarAnnotationRector`
Removes non-existing @var annotations above the code
```diff
class SomeClass
{
public function get()
{
- /** @var Training[] $trainings */
return $this->getData();
}
}
```
<br>
2018-10-21 22:26:45 +00:00
## PHPUnit
### `AddSeeTestAnnotationRector`
- class: `Rector\PHPUnit\Rector\Class_\AddSeeTestAnnotationRector`
Add @see annotation test of the class for faster jump to test. Make it FQN, so it stays in the annotation, not in the PHP source code.
```diff
+/**
+ * @see \SomeServiceTest
+ */
class SomeService
{
}
class SomeServiceTest extends \PHPUnit\Framework\TestCase
{
}
```
<br>
### `ArrayArgumentInTestToDataProviderRector`
- class: `Rector\PHPUnit\Rector\Class_\ArrayArgumentInTestToDataProviderRector`
Move array argument from tests into data provider [configurable]
```yaml
services:
Rector\PHPUnit\Rector\Class_\ArrayArgumentInTestToDataProviderRector:
$configuration:
-
class: PHPUnit\Framework\TestCase
old_method: doTestMultiple
new_method: doTestSingle
2019-09-15 18:28:10 +00:00
variable_name: number
```
```diff
class SomeServiceTest extends \PHPUnit\Framework\TestCase
{
- public function test()
+ /**
+ * @dataProvider provideDataForTest()
+ */
2019-09-15 18:28:10 +00:00
+ public function test(int $number)
{
- $this->doTestMultiple([1, 2, 3]);
2019-09-15 18:28:10 +00:00
+ $this->doTestSingle($number);
+ }
+
+ /**
+ * @return int[]
+ */
+ public function provideDataForTest(): iterable
+ {
2019-09-15 18:28:10 +00:00
+ yield [1];
+ yield [2];
+ yield [3];
}
}
```
<br>
### `AssertCompareToSpecificMethodRector`
2018-10-21 22:26:45 +00:00
- class: `Rector\PHPUnit\Rector\SpecificMethod\AssertCompareToSpecificMethodRector`
2018-10-21 22:26:45 +00:00
Turns vague php-only method in PHPUnit TestCase to more specific
2018-10-21 22:26:45 +00:00
2018-10-12 23:15:00 +00:00
```diff
-$this->assertSame(10, count($anything), "message");
+$this->assertCount(10, $anything, "message");
2018-10-12 23:15:00 +00:00
```
```diff
-$this->assertSame($value, {function}($anything), "message");
+$this->assert{function}($value, $anything, "message\");
```
2018-12-14 19:35:35 +00:00
```diff
-$this->assertEquals($value, {function}($anything), "message");
+$this->assert{function}($value, $anything, "message\");
```
2019-05-29 13:40:20 +00:00
```diff
-$this->assertNotSame($value, {function}($anything), "message");
+$this->assertNot{function}($value, $anything, "message")
```
2018-12-14 19:35:35 +00:00
```diff
-$this->assertNotEquals($value, {function}($anything), "message");
+$this->assertNot{function}($value, $anything, "message")
2018-12-14 19:35:35 +00:00
```
<br>
### `AssertComparisonToSpecificMethodRector`
2018-12-14 19:35:35 +00:00
- class: `Rector\PHPUnit\Rector\SpecificMethod\AssertComparisonToSpecificMethodRector`
2019-05-29 13:40:20 +00:00
Turns comparison operations to their method name alternatives in PHPUnit TestCase
2019-05-29 13:40:20 +00:00
```diff
-$this->assertTrue($foo === $bar, "message");
+$this->assertSame($bar, $foo, "message");
2019-05-29 13:40:20 +00:00
```
```diff
-$this->assertFalse($foo >= $bar, "message");
+$this->assertLessThanOrEqual($bar, $foo, "message");
2019-05-29 13:40:20 +00:00
```
<br>
### `AssertEqualsParameterToSpecificMethodsTypeRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\PHPUnit\Rector\MethodCall\AssertEqualsParameterToSpecificMethodsTypeRector`
2018-12-14 19:35:35 +00:00
Change assertEquals()/assertNotEquals() method parameters to new specific alternatives
2018-12-14 19:35:35 +00:00
```diff
final class SomeTest extends \PHPUnit\Framework\TestCase
{
public function test()
{
$value = 'value';
- $this->assertEquals('string', $value, 'message', 5.0);
+ $this->assertEqualsWithDelta('string', $value, 5.0, 'message');
- $this->assertEquals('string', $value, 'message', 0.0, 20);
+ $this->assertEquals('string', $value, 'message', 0.0);
- $this->assertEquals('string', $value, 'message', 0.0, 10, true);
+ $this->assertEqualsCanonicalizing('string', $value, 'message');
- $this->assertEquals('string', $value, 'message', 0.0, 10, false, true);
+ $this->assertEqualsIgnoringCase('string', $value, 'message');
2019-03-16 20:31:46 +00:00
}
}
```
<br>
### `AssertFalseStrposToContainsRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\PHPUnit\Rector\SpecificMethod\AssertFalseStrposToContainsRector`
2019-05-29 13:40:20 +00:00
Turns `strpos`/`stripos` comparisons to their method name alternatives in PHPUnit TestCase
2019-05-29 13:40:20 +00:00
```diff
-$this->assertFalse(strpos($anything, "foo"), "message");
+$this->assertNotContains("foo", $anything, "message");
```
2019-05-29 13:40:20 +00:00
```diff
-$this->assertNotFalse(stripos($anything, "foo"), "message");
+$this->assertContains("foo", $anything, "message");
2019-05-29 13:40:20 +00:00
```
<br>
### `AssertInstanceOfComparisonRector`
2019-03-16 20:31:46 +00:00
- class: `Rector\PHPUnit\Rector\SpecificMethod\AssertInstanceOfComparisonRector`
2019-03-16 20:31:46 +00:00
Turns instanceof comparisons to their method name alternatives in PHPUnit TestCase
2019-03-16 20:31:46 +00:00
```diff
-$this->assertTrue($foo instanceof Foo, "message");
+$this->assertInstanceOf("Foo", $foo, "message");
```
2018-08-01 20:09:34 +00:00
```diff
-$this->assertFalse($foo instanceof Foo, "message");
+$this->assertNotInstanceOf("Foo", $foo, "message");
2018-07-31 12:50:39 +00:00
```
<br>
2019-05-29 13:40:20 +00:00
### `AssertIssetToSpecificMethodRector`
2018-07-31 12:50:39 +00:00
2019-05-29 13:40:20 +00:00
- class: `Rector\PHPUnit\Rector\SpecificMethod\AssertIssetToSpecificMethodRector`
2018-07-31 12:50:39 +00:00
2019-05-29 13:40:20 +00:00
Turns isset comparisons to their method name alternatives in PHPUnit TestCase
2018-07-31 12:50:39 +00:00
2018-08-01 20:09:34 +00:00
```diff
2019-05-29 13:40:20 +00:00
-$this->assertTrue(isset($anything->foo));
+$this->assertFalse(isset($anything["foo"]), "message");
2018-10-12 23:15:00 +00:00
```
```diff
2019-05-29 13:40:20 +00:00
-$this->assertObjectHasAttribute("foo", $anything);
+$this->assertArrayNotHasKey("foo", $anything, "message");
2018-10-12 23:15:00 +00:00
```
<br>
2018-07-31 12:50:39 +00:00
### `AssertNotOperatorRector`
2018-10-12 23:15:00 +00:00
- class: `Rector\PHPUnit\Rector\SpecificMethod\AssertNotOperatorRector`
Turns not-operator comparisons to their method name alternatives in PHPUnit TestCase
2018-10-12 23:15:00 +00:00
2018-10-21 22:26:45 +00:00
```diff
-$this->assertTrue(!$foo, "message");
+$this->assertFalse($foo, "message");
2018-10-21 22:26:45 +00:00
```
2018-10-12 23:15:00 +00:00
```diff
-$this->assertFalse(!$foo, "message");
+$this->assertTrue($foo, "message");
```
2018-10-12 23:15:00 +00:00
<br>
2018-10-21 22:26:45 +00:00
### `AssertPropertyExistsRector`
- class: `Rector\PHPUnit\Rector\SpecificMethod\AssertPropertyExistsRector`
Turns `property_exists` comparisons to their method name alternatives in PHPUnit TestCase
2018-10-12 23:15:00 +00:00
```diff
-$this->assertTrue(property_exists(new Class, "property"), "message");
+$this->assertClassHasAttribute("property", "Class", "message");
2018-10-12 23:15:00 +00:00
```
```diff
-$this->assertFalse(property_exists(new Class, "property"), "message");
+$this->assertClassNotHasAttribute("property", "Class", "message");
2018-10-12 23:15:00 +00:00
```
<br>
2019-05-29 13:40:20 +00:00
### `AssertRegExpRector`
2018-10-12 23:15:00 +00:00
2019-05-29 13:40:20 +00:00
- class: `Rector\PHPUnit\Rector\SpecificMethod\AssertRegExpRector`
2018-10-12 23:15:00 +00:00
2019-05-29 13:40:20 +00:00
Turns `preg_match` comparisons to their method name alternatives in PHPUnit TestCase
2018-10-12 23:15:00 +00:00
```diff
2019-05-29 13:40:20 +00:00
-$this->assertSame(1, preg_match("/^Message for ".*"\.$/", $string), $message);
+$this->assertRegExp("/^Message for ".*"\.$/", $string, $message);
2018-10-12 23:15:00 +00:00
```
```diff
2019-05-29 13:40:20 +00:00
-$this->assertEquals(false, preg_match("/^Message for ".*"\.$/", $string), $message);
+$this->assertNotRegExp("/^Message for ".*"\.$/", $string, $message);
2018-10-12 23:15:00 +00:00
```
<br>
### `AssertSameBoolNullToSpecificMethodRector`
2018-10-12 23:15:00 +00:00
- class: `Rector\PHPUnit\Rector\SpecificMethod\AssertSameBoolNullToSpecificMethodRector`
2018-10-12 23:15:00 +00:00
Turns same bool and null comparisons to their method name alternatives in PHPUnit TestCase
2018-10-12 23:15:00 +00:00
```diff
-$this->assertSame(null, $anything);
+$this->assertNull($anything);
2018-10-12 23:15:00 +00:00
```
```diff
-$this->assertNotSame(false, $anything);
+$this->assertNotFalse($anything);
2018-10-12 23:15:00 +00:00
```
<br>
2018-10-12 23:15:00 +00:00
### `AssertTrueFalseInternalTypeToSpecificMethodRector`
2018-10-12 23:15:00 +00:00
- class: `Rector\PHPUnit\Rector\SpecificMethod\AssertTrueFalseInternalTypeToSpecificMethodRector`
Turns true/false with internal type comparisons to their method name alternatives in PHPUnit TestCase
2018-10-12 23:15:00 +00:00
```diff
-$this->assertTrue(is_{internal_type}($anything), "message");
+$this->assertInternalType({internal_type}, $anything, "message");
2018-10-12 23:15:00 +00:00
```
```diff
-$this->assertFalse(is_{internal_type}($anything), "message");
+$this->assertNotInternalType({internal_type}, $anything, "message");
```
<br>
### `AssertTrueFalseToSpecificMethodRector`
- class: `Rector\PHPUnit\Rector\SpecificMethod\AssertTrueFalseToSpecificMethodRector`
Turns true/false comparisons to their method name alternatives in PHPUnit TestCase when possible
```diff
-$this->assertTrue(is_readable($readmeFile), "message");
+$this->assertIsReadable($readmeFile, "message");
2018-10-12 23:15:00 +00:00
```
<br>
### `DelegateExceptionArgumentsRector`
2018-10-12 23:15:00 +00:00
- class: `Rector\PHPUnit\Rector\DelegateExceptionArgumentsRector`
2018-10-12 23:15:00 +00:00
Takes `setExpectedException()` 2nd and next arguments to own methods in PHPUnit.
2019-05-29 13:40:20 +00:00
```diff
-$this->setExpectedException(Exception::class, "Message", "CODE");
+$this->setExpectedException(Exception::class);
+$this->expectExceptionMessage("Message");
+$this->expectExceptionCode("CODE");
```
<br>
### `ExceptionAnnotationRector`
2018-10-12 23:15:00 +00:00
- class: `Rector\PHPUnit\Rector\ExceptionAnnotationRector`
2018-10-12 23:15:00 +00:00
Takes `setExpectedException()` 2nd and next arguments to own methods in PHPUnit.
2019-05-29 13:40:20 +00:00
```diff
-/**
- * @expectedException Exception
- * @expectedExceptionMessage Message
- */
public function test()
{
+ $this->expectException('Exception');
+ $this->expectExceptionMessage('Message');
// tested code
}
2018-10-12 23:15:00 +00:00
```
<br>
### `GetMockRector`
2018-10-12 23:15:00 +00:00
- class: `Rector\PHPUnit\Rector\GetMockRector`
2018-10-12 23:15:00 +00:00
Turns getMock*() methods to createMock()
2018-10-12 23:15:00 +00:00
```diff
-$this->getMock("Class");
+$this->createMock("Class");
2018-10-12 23:15:00 +00:00
```
```diff
-$this->getMockWithoutInvokingTheOriginalConstructor("Class");
+$this->createMock("Class");
2018-10-12 23:15:00 +00:00
```
<br>
2018-10-23 18:58:57 +00:00
### `RemoveExpectAnyFromMockRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\PHPUnit\Rector\MethodCall\RemoveExpectAnyFromMockRector`
2019-05-29 13:40:20 +00:00
Remove `expect($this->any())` from mocks as it has no added value
2019-05-29 13:40:20 +00:00
```diff
use PHPUnit\Framework\TestCase;
2019-05-29 13:40:20 +00:00
class SomeClass extends TestCase
2019-03-31 12:25:39 +00:00
{
public function test()
2019-03-31 12:25:39 +00:00
{
$translator = $this->getMock('SomeClass');
- $translator->expects($this->any())
- ->method('trans')
+ $translator->method('trans')
->willReturn('translated max {{ max }}!');
2019-03-31 12:25:39 +00:00
}
2019-05-29 13:40:20 +00:00
}
```
2019-03-31 12:25:39 +00:00
2019-05-29 13:40:20 +00:00
<br>
### `ReplaceAssertArraySubsetRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\PHPUnit\Rector\MethodCall\ReplaceAssertArraySubsetRector`
2019-05-29 13:40:20 +00:00
Replace deprecated "assertArraySubset()" method with alternative methods
2019-05-29 13:40:20 +00:00
```diff
class SomeTest extends \PHPUnit\Framework\TestCase
2019-05-29 13:40:20 +00:00
{
public function test()
2019-03-31 12:25:39 +00:00
{
$checkedArray = [];
- $this->assertArraySubset([
- 'cache_directory' => 'new_value',
- ], $checkedArray);
+ $this->assertArrayHasKey('cache_directory', $checkedArray);
+ $this->assertSame('new_value', $checkedArray['cache_directory']);
2019-03-31 12:25:39 +00:00
}
}
```
<br>
### `SimplifyForeachInstanceOfRector`
2018-10-12 23:15:00 +00:00
- class: `Rector\PHPUnit\Rector\Foreach_\SimplifyForeachInstanceOfRector`
2018-10-12 23:15:00 +00:00
Simplify unnecessary foreach check of instances
2018-10-12 23:15:00 +00:00
```diff
-foreach ($foos as $foo) {
- $this->assertInstanceOf(\SplFileInfo::class, $foo);
-}
+$this->assertContainsOnlyInstancesOf(\SplFileInfo::class, $foos);
2018-10-12 23:15:00 +00:00
```
<br>
### `SpecificAssertContainsRector`
2019-01-22 20:34:38 +00:00
- class: `Rector\PHPUnit\Rector\MethodCall\SpecificAssertContainsRector`
2019-01-22 20:34:38 +00:00
Change assertContains()/assertNotContains() method to new string and iterable alternatives
2019-01-22 20:34:38 +00:00
```diff
<?php
final class SomeTest extends \PHPUnit\Framework\TestCase
{
public function test()
{
- $this->assertContains('foo', 'foo bar');
- $this->assertNotContains('foo', 'foo bar');
+ $this->assertStringContainsString('foo', 'foo bar');
+ $this->assertStringNotContainsString('foo', 'foo bar');
}
}
2019-01-22 20:34:38 +00:00
```
<br>
### `SpecificAssertInternalTypeRector`
2018-12-14 19:35:35 +00:00
- class: `Rector\PHPUnit\Rector\MethodCall\SpecificAssertInternalTypeRector`
2018-12-14 19:35:35 +00:00
Change assertInternalType()/assertNotInternalType() method to new specific alternatives
2018-12-14 19:35:35 +00:00
```diff
final class SomeTest extends \PHPUnit\Framework\TestCase
{
public function test()
{
$value = 'value';
- $this->assertInternalType('string', $value);
- $this->assertNotInternalType('array', $value);
+ $this->assertIsString($value);
+ $this->assertIsNotArray($value);
}
}
2018-12-14 19:35:35 +00:00
```
<br>
### `TestListenerToHooksRector`
2018-10-12 23:15:00 +00:00
- class: `Rector\PHPUnit\Rector\Class_\TestListenerToHooksRector`
2018-10-12 23:15:00 +00:00
Refactor "*TestListener.php" to particular "*Hook.php" files
2018-10-12 23:15:00 +00:00
```diff
namespace App\Tests;
2019-05-29 13:40:20 +00:00
-use PHPUnit\Framework\TestListener;
-
-final class BeforeListHook implements TestListener
+final class BeforeListHook implements \PHPUnit\Runner\BeforeTestHook, \PHPUnit\Runner\AfterTestHook
2019-05-29 13:40:20 +00:00
{
- public function addError(Test $test, \Throwable $t, float $time): void
+ public function executeBeforeTest(Test $test): void
2019-05-29 13:40:20 +00:00
{
- }
-
- public function addWarning(Test $test, Warning $e, float $time): void
- {
- }
-
- public function addFailure(Test $test, AssertionFailedError $e, float $time): void
- {
- }
-
- public function addIncompleteTest(Test $test, \Throwable $t, float $time): void
- {
- }
-
- public function addRiskyTest(Test $test, \Throwable $t, float $time): void
- {
- }
-
- public function addSkippedTest(Test $test, \Throwable $t, float $time): void
- {
- }
-
- public function startTestSuite(TestSuite $suite): void
- {
- }
-
- public function endTestSuite(TestSuite $suite): void
- {
- }
-
- public function startTest(Test $test): void
- {
echo 'start test!';
}
- public function endTest(Test $test, float $time): void
+ public function executeAfterTest(Test $test, float $time): void
{
echo $time;
2019-05-29 13:40:20 +00:00
}
}
2018-10-12 23:15:00 +00:00
```
<br>
### `TryCatchToExpectExceptionRector`
2018-10-12 23:15:00 +00:00
- class: `Rector\PHPUnit\Rector\TryCatchToExpectExceptionRector`
2018-10-12 23:15:00 +00:00
Turns try/catch to expectException() call
2018-10-12 23:15:00 +00:00
```diff
-try {
- $someService->run();
-} catch (Throwable $exception) {
- $this->assertInstanceOf(RuntimeException::class, $e);
- $this->assertContains('There was an error executing the following script', $e->getMessage());
-}
+$this->expectException(RuntimeException::class);
+$this->expectExceptionMessage('There was an error executing the following script');
+$someService->run();
2018-10-12 23:15:00 +00:00
```
<br>
### `UseSpecificWillMethodRector`
2018-07-31 12:50:39 +00:00
- class: `Rector\PHPUnit\Rector\MethodCall\UseSpecificWillMethodRector`
2018-07-31 12:50:39 +00:00
Changes ->will($this->xxx()) to one specific method
2018-08-01 20:09:34 +00:00
```diff
class SomeClass extends PHPUnit\Framework\TestCase
{
public function test()
{
$translator = $this->getMockBuilder('Symfony\Component\Translation\TranslatorInterface')->getMock();
$translator->expects($this->any())
->method('trans')
- ->with($this->equalTo('old max {{ max }}!'))
- ->will($this->returnValue('translated max {{ max }}!'));
+ ->with('old max {{ max }}!')
+ ->willReturnValue('translated max {{ max }}!');
}
}
2018-07-31 12:50:39 +00:00
```
<br>
2019-08-05 21:10:47 +00:00
## PHPUnitSymfony
### `AddMessageToEqualsResponseCodeRector`
- class: `Rector\PHPUnitSymfony\Rector\StaticCall\AddMessageToEqualsResponseCodeRector`
Add response content to response code assert, so it is easier to debug
```diff
use PHPUnit\Framework\TestCase;
use Symfony\Component\HttpFoundation\Response;
final class SomeClassTest extends TestCase
{
public function test(Response $response)
{
$this->assertEquals(
Response::HTTP_NO_CONTENT,
$response->getStatusCode()
+ $response->getContent()
);
}
}
```
<br>
## PSR4
### `NormalizeNamespaceByPSR4ComposerAutoloadRector`
- class: `Rector\PSR4\Rector\Namespace_\NormalizeNamespaceByPSR4ComposerAutoloadRector`
Changes namespace and class names to match PSR-4 in composer.json autoload section
<br>
## Php
2019-05-29 13:40:20 +00:00
### `AddDefaultValueForUndefinedVariableRector`
2019-01-22 20:34:38 +00:00
2019-05-29 13:40:20 +00:00
- class: `Rector\Php\Rector\FunctionLike\AddDefaultValueForUndefinedVariableRector`
2019-01-22 20:34:38 +00:00
2019-05-29 13:40:20 +00:00
Adds default value for undefined variable
2019-01-22 20:34:38 +00:00
```diff
class SomeClass
{
2019-05-29 13:40:20 +00:00
public function run()
2019-01-22 20:34:38 +00:00
{
2019-05-29 13:40:20 +00:00
+ $a = null;
if (rand(0, 1)) {
$a = 5;
}
echo $a;
2019-01-22 20:34:38 +00:00
}
}
```
<br>
2019-08-24 11:08:59 +00:00
### `AddLiteralSeparatorToNumberRector`
- class: `Rector\Php\Rector\LNumber\AddLiteralSeparatorToNumberRector`
Add "_" as thousands separator in numbers
```diff
class SomeClass
{
public function run()
{
- $int = 1000;
- $float = 1000500.001;
+ $int = 1_000;
+ $float = 1_000_500.001;
}
}
```
<br>
### `ArrayKeyExistsOnPropertyRector`
2018-07-31 12:50:39 +00:00
- class: `Rector\Php\Rector\FuncCall\ArrayKeyExistsOnPropertyRector`
2018-07-31 12:50:39 +00:00
Change array_key_exists() on property to property_exists()
2018-08-01 20:09:34 +00:00
```diff
class SomeClass {
public $value;
2018-10-12 23:15:00 +00:00
}
$someClass = new SomeClass;
2019-05-24 20:30:15 +00:00
-array_key_exists('value', $someClass);
+property_exists($someClass, 'value');
2019-05-19 08:27:38 +00:00
```
<br>
### `ArrayKeyFirstLastRector`
2018-12-31 11:50:32 +00:00
- class: `Rector\Php\Rector\FuncCall\ArrayKeyFirstLastRector`
2018-12-31 11:50:32 +00:00
Make use of array_key_first() and array_key_last()
2018-12-31 11:50:32 +00:00
```diff
-reset($items);
-$firstKey = key($items);
+$firstKey = array_key_first($items);
```
```diff
-end($items);
-$lastKey = key($items);
+$lastKey = array_key_last($items);
```
<br>
### `ArraySpreadInsteadOfArrayMergeRector`
2019-02-21 14:36:16 +00:00
- class: `Rector\Php\Rector\FuncCall\ArraySpreadInsteadOfArrayMergeRector`
2019-02-21 14:36:16 +00:00
Change array_merge() to spread operator, except values with possible string key values
2019-02-21 14:36:16 +00:00
```diff
class SomeClass
2019-02-21 14:36:16 +00:00
{
public function run($iter1, $iter2)
2019-02-21 14:36:16 +00:00
{
- $values = array_merge(iterator_to_array($iter1), iterator_to_array($iter2));
+ $values = [...$iter1, ...$iter2];
2019-02-21 14:36:16 +00:00
// Or to generalize to all iterables
- $anotherValues = array_merge(
- is_array($iter1) ? $iter1 : iterator_to_array($iter1),
- is_array($iter2) ? $iter2 : iterator_to_array($iter2)
- );
+ $anotherValues = [...$iter1, ...$iter2];
2019-05-01 23:56:58 +00:00
}
}
```
<br>
### `AssignArrayToStringRector`
- class: `Rector\Php\Rector\Assign\AssignArrayToStringRector`
String cannot be turned into array by assignment anymore
```diff
-$string = '';
+$string = [];
$string[] = 1;
```
<br>
### `BarewordStringRector`
- class: `Rector\Php\Rector\ConstFetch\BarewordStringRector`
Changes unquoted non-existing constants to strings
```diff
-var_dump(VAR);
+var_dump("VAR");
```
<br>
### `BinaryOpBetweenNumberAndStringRector`
2019-02-21 14:36:16 +00:00
- class: `Rector\Php\Rector\BinaryOp\BinaryOpBetweenNumberAndStringRector`
2019-02-21 14:36:16 +00:00
Change binary operation between some number + string to PHP 7.1 compatible version
2019-02-21 14:36:16 +00:00
```diff
class SomeClass
2019-02-21 14:36:16 +00:00
{
public function run()
{
- $value = 5 + '';
- $value = 5.0 + 'hi';
+ $value = 5 + 0;
+ $value = 5.0 + 0
$name = 'Tom';
- $value = 5 * $name;
+ $value = 5 * 0;
}
}
```
<br>
### `BreakNotInLoopOrSwitchToReturnRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\Php\Rector\Break_\BreakNotInLoopOrSwitchToReturnRector`
2019-05-29 13:40:20 +00:00
Convert break outside for/foreach/switch context to return
```diff
class SomeClass
{
public function run()
{
$zhrs = abs($gmt)/3600;
$hrs = floor($zhrs);
if ($isphp5)
return sprintf('%s%02d%02d',($gmt<=0)?'+':'-',floor($zhrs),($zhrs-$hrs)*60);
else
return sprintf('%s%02d%02d',($gmt<0)?'+':'-',floor($zhrs),($zhrs-$hrs)*60);
- break;
+ return;
}
}
```
<br>
### `CallUserMethodRector`
- class: `Rector\Php\Rector\FuncCall\CallUserMethodRector`
Changes call_user_method()/call_user_method_array() to call_user_func()/call_user_func_array()
```diff
-call_user_method($method, $obj, "arg1", "arg2");
+call_user_func(array(&$obj, "method"), "arg1", "arg2");
```
<br>
2019-05-29 13:40:20 +00:00
### `ClassConstantToSelfClassRector`
2019-03-09 13:24:30 +00:00
2019-05-29 13:40:20 +00:00
- class: `Rector\Php\Rector\MagicConstClass\ClassConstantToSelfClassRector`
2019-03-09 13:24:30 +00:00
2019-05-29 13:40:20 +00:00
Change __CLASS__ to self::class
2019-03-09 13:24:30 +00:00
```diff
class SomeClass
{
2019-05-29 13:40:20 +00:00
public function callOnMe()
{
- var_dump(__CLASS__);
+ var_dump(self::class);
}
2019-03-09 13:24:30 +00:00
}
```
<br>
2019-05-29 13:40:20 +00:00
### `ClosureToArrowFunctionRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\Php\Rector\Closure\ClosureToArrowFunctionRector`
2019-05-29 13:40:20 +00:00
Change closure to arrow function
```diff
2019-05-29 13:40:20 +00:00
class SomeClass
{
2019-05-29 13:40:20 +00:00
public function run($meetups)
{
2019-05-29 13:40:20 +00:00
- return array_filter($meetups, function (Meetup $meetup) {
- return is_object($meetup);
- });
+ return array_filter($meetups, fn(Meetup $meetup) => is_object($meetup));
}
}
```
<br>
### `CompleteVarDocTypePropertyRector`
2018-12-31 11:50:32 +00:00
- class: `Rector\Php\Rector\Property\CompleteVarDocTypePropertyRector`
2018-12-31 11:50:32 +00:00
2019-09-15 18:28:10 +00:00
Complete property `@var` annotations or correct the old ones
2018-12-31 11:50:32 +00:00
```diff
final class SomeClass
{
+ /**
+ * @var EventDispatcher
+ */
private $eventDispatcher;
public function __construct(EventDispatcher $eventDispatcher)
{
$this->eventDispatcher = $eventDispatcher;
}
}
2018-12-31 11:50:32 +00:00
```
<br>
### `ContinueToBreakInSwitchRector`
2019-05-24 20:30:15 +00:00
- class: `Rector\Php\Rector\Switch_\ContinueToBreakInSwitchRector`
2019-05-24 20:30:15 +00:00
Use break instead of continue in switch statements
2019-05-24 20:30:15 +00:00
```diff
function some_run($value)
{
switch ($value) {
case 1:
echo 'Hi';
- continue;
+ break;
case 2:
echo 'Hello';
break;
}
}
```
<br>
2018-07-31 12:50:39 +00:00
### `CountOnNullRector`
- class: `Rector\Php\Rector\FuncCall\CountOnNullRector`
Changes count() on null to safe ternary check
2018-08-01 20:09:34 +00:00
```diff
$values = null;
-$count = count($values);
+$count = is_array($values) || $values instanceof Countable ? count($values) : 0;
2018-07-31 12:50:39 +00:00
```
<br>
### `CreateFunctionToAnonymousFunctionRector`
2018-07-31 12:50:39 +00:00
- class: `Rector\Php\Rector\FuncCall\CreateFunctionToAnonymousFunctionRector`
2018-07-31 12:50:39 +00:00
Use anonymous functions instead of deprecated create_function()
```diff
class ClassWithCreateFunction
{
public function run()
{
- $callable = create_function('$matches', "return '$delimiter' . strtolower(\$matches[1]);");
+ $callable = function($matches) use ($delimiter) {
+ return $delimiter . strtolower($matches[1]);
+ };
}
}
2018-10-21 22:26:45 +00:00
```
<br>
2018-10-21 22:26:45 +00:00
### `EmptyListRector`
2018-10-21 22:26:45 +00:00
- class: `Rector\Php\Rector\List_\EmptyListRector`
2018-10-21 22:26:45 +00:00
list() cannot be empty
2018-10-21 22:26:45 +00:00
2018-10-23 18:58:57 +00:00
```diff
-list() = $values;
+list($generated) = $values;
2018-10-23 18:58:57 +00:00
```
2018-10-21 22:26:45 +00:00
<br>
2018-10-21 22:26:45 +00:00
### `EregToPregMatchRector`
- class: `Rector\Php\Rector\FuncCall\EregToPregMatchRector`
Changes ereg*() to preg*() calls
```diff
-ereg("hi")
+preg_match("#hi#");
```
<br>
### `ExceptionHandlerTypehintRector`
- class: `Rector\Php\Rector\FunctionLike\ExceptionHandlerTypehintRector`
Changes property `@var` annotations from annotation to type.
```diff
-function handler(Exception $exception) { ... }
+function handler(Throwable $exception) { ... }
set_exception_handler('handler');
```
<br>
### `ExportToReflectionFunctionRector`
2019-02-21 14:36:16 +00:00
- class: `Rector\Php\Rector\StaticCall\ExportToReflectionFunctionRector`
2019-02-21 14:36:16 +00:00
Change export() to ReflectionFunction alternatives
2019-02-21 14:36:16 +00:00
```diff
-$reflectionFunction = ReflectionFunction::export('foo');
-$reflectionFunctionAsString = ReflectionFunction::export('foo', true);
+$reflectionFunction = new ReflectionFunction('foo');
+$reflectionFunctionAsString = (string) new ReflectionFunction('foo');
```
<br>
### `FilterVarToAddSlashesRector`
- class: `Rector\Php\Rector\FuncCall\FilterVarToAddSlashesRector`
Change filter_var() with slash escaping to addslashes()
```diff
$var= "Satya's here!";
-filter_var($var, FILTER_SANITIZE_MAGIC_QUOTES);
+addslashes($var);
2019-02-21 14:36:16 +00:00
```
<br>
2018-12-31 11:50:32 +00:00
### `GetCalledClassToStaticClassRector`
- class: `Rector\Php\Rector\FuncCall\GetCalledClassToStaticClassRector`
Change __CLASS__ to self::class
```diff
class SomeClass
-{
- public function callOnMe()
- {
- var_dump( get_called_class());
- }
-}
+ {
+ public function callOnMe()
+ {
+ var_dump( static::class);
+ }
+ }
```
<br>
### `GetClassOnNullRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\Php\Rector\FuncCall\GetClassOnNullRector`
2019-05-29 13:40:20 +00:00
Null is no more allowed in get_class()
2019-05-29 13:40:20 +00:00
```diff
final class SomeClass
2019-05-29 13:40:20 +00:00
{
public function getItem()
2019-05-29 13:40:20 +00:00
{
$value = null;
- return get_class($value);
+ return $value !== null ? get_class($value) : self::class;
2019-05-29 13:40:20 +00:00
}
}
```
<br>
### `IfToSpaceshipRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\Php\Rector\If_\IfToSpaceshipRector`
2019-05-29 13:40:20 +00:00
Changes if/else to spaceship <=> where useful
2019-05-29 13:40:20 +00:00
```diff
class SomeClass
2019-05-29 13:40:20 +00:00
{
public function run()
{
usort($languages, function ($a, $b) {
- if ($a[0] === $b[0]) {
- return 0;
- }
-
- return ($a[0] < $b[0]) ? 1 : -1;
+ return $b[0] <=> $a[0];
});
}
2019-05-29 13:40:20 +00:00
}
```
<br>
### `IsCountableRector`
2019-05-19 08:27:38 +00:00
- class: `Rector\Php\Rector\BinaryOp\IsCountableRector`
2019-05-19 08:27:38 +00:00
Changes is_array + Countable check to is_countable
2019-05-19 08:27:38 +00:00
```diff
-is_array($foo) || $foo instanceof Countable;
+is_countable($foo);
2019-05-19 08:27:38 +00:00
```
<br>
### `IsIterableRector`
2018-10-23 18:58:57 +00:00
- class: `Rector\Php\Rector\BinaryOp\IsIterableRector`
Changes is_array + Traversable check to is_iterable
2018-10-21 22:26:45 +00:00
```diff
-is_array($foo) || $foo instanceof Traversable;
+is_iterable($foo);
2018-08-01 20:09:34 +00:00
```
2018-07-31 12:50:39 +00:00
<br>
### `IsObjectOnIncompleteClassRector`
- class: `Rector\Php\Rector\FuncCall\IsObjectOnIncompleteClassRector`
2018-07-31 12:50:39 +00:00
Incomplete class returns inverted bool on is_object()
2018-07-31 12:50:39 +00:00
2018-08-01 20:09:34 +00:00
```diff
$incompleteObject = new __PHP_Incomplete_Class;
-$isObject = is_object($incompleteObject);
+$isObject = ! is_object($incompleteObject);
2018-07-31 12:50:39 +00:00
```
<br>
2019-05-29 13:40:20 +00:00
### `JsonThrowOnErrorRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\Php\Rector\FuncCall\JsonThrowOnErrorRector`
2019-05-29 13:40:20 +00:00
Adds JSON_THROW_ON_ERROR to json_encode() and json_decode() to throw JsonException on error
```diff
2019-05-29 13:40:20 +00:00
-json_encode($content);
-json_decode($json);
+json_encode($content, JSON_THROW_ON_ERROR);
+json_decode($json, null, null, JSON_THROW_ON_ERROR);
```
<br>
### `ListEachRector`
- class: `Rector\Php\Rector\Each\ListEachRector`
2018-07-31 12:50:39 +00:00
each() function is deprecated, use key() and current() instead
2018-07-31 12:50:39 +00:00
```diff
-list($key, $callback) = each($callbacks);
+$key = key($opt->option);
+$val = current($opt->option);
2018-08-01 20:09:34 +00:00
```
<br>
2018-10-12 23:15:00 +00:00
### `ListSplitStringRector`
2018-10-12 23:15:00 +00:00
- class: `Rector\Php\Rector\List_\ListSplitStringRector`
list() cannot split string directly anymore, use str_split()
2018-10-12 23:15:00 +00:00
2018-08-01 20:09:34 +00:00
```diff
-list($foo) = "string";
+list($foo) = str_split("string");
2018-07-31 12:50:39 +00:00
```
<br>
### `ListSwapArrayOrderRector`
2019-03-09 13:24:30 +00:00
- class: `Rector\Php\Rector\List_\ListSwapArrayOrderRector`
2019-03-09 13:24:30 +00:00
list() assigns variables in reverse order - relevant in array assign
2019-03-09 13:24:30 +00:00
```diff
-list($a[], $a[]) = [1, 2];
+list($a[], $a[]) = array_reverse([1, 2]);
2019-03-09 13:24:30 +00:00
```
<br>
### `MbStrrposEncodingArgumentPositionRector`
2019-02-21 14:36:16 +00:00
- class: `Rector\Php\Rector\FuncCall\MbStrrposEncodingArgumentPositionRector`
2019-02-21 14:36:16 +00:00
Change mb_strrpos() encoding argument position
2019-02-21 14:36:16 +00:00
```diff
-mb_strrpos($text, "abc", "UTF-8");
+mb_strrpos($text, "abc", 0, "UTF-8");
2019-02-21 14:36:16 +00:00
```
<br>
### `MultiDirnameRector`
2018-07-31 12:50:39 +00:00
- class: `Rector\Php\Rector\FuncCall\MultiDirnameRector`
Changes multiple dirname() calls to one with nesting level
2018-07-31 12:50:39 +00:00
```diff
-dirname(dirname($path));
+dirname($path, 2);
2018-08-01 20:09:34 +00:00
```
2018-07-31 12:50:39 +00:00
<br>
2018-10-12 23:15:00 +00:00
### `MultiExceptionCatchRector`
2018-12-31 11:50:32 +00:00
- class: `Rector\Php\Rector\TryCatch\MultiExceptionCatchRector`
2018-12-31 11:50:32 +00:00
Changes multi catch of same exception to single one | separated.
2018-12-31 11:50:32 +00:00
```diff
try {
// Some code...
-} catch (ExceptionType1 $exception) {
- $sameCode;
-} catch (ExceptionType2 $exception) {
+} catch (ExceptionType1 | ExceptionType2 $exception) {
$sameCode;
}
2018-12-31 11:50:32 +00:00
```
<br>
### `MysqlAssignToMysqliRector`
2018-10-12 23:15:00 +00:00
- class: `Rector\Php\Rector\Assign\MysqlAssignToMysqliRector`
Converts more complex mysql functions to mysqli
2018-10-12 23:15:00 +00:00
2018-08-01 20:09:34 +00:00
```diff
-$data = mysql_db_name($result, $row);
+mysqli_data_seek($result, $row);
+$fetch = mysql_fetch_row($result);
+$data = $fetch[0];
2018-05-05 12:48:33 +00:00
```
<br>
### `NullCoalescingOperatorRector`
2019-05-01 23:56:58 +00:00
- class: `Rector\Php\Rector\Assign\NullCoalescingOperatorRector`
2019-05-01 23:56:58 +00:00
Use null coalescing operator ??=
2019-05-01 23:56:58 +00:00
```diff
$array = [];
-$array['user_id'] = $array['user_id'] ?? 'value';
+$array['user_id'] ??= 'value';
2019-05-01 23:56:58 +00:00
```
<br>
### `ParseStrWithResultArgumentRector`
- class: `Rector\Php\Rector\FuncCall\ParseStrWithResultArgumentRector`
Use $result argument in parse_str() function
```diff
-parse_str($this->query);
-$data = get_defined_vars();
+parse_str($this->query, $result);
+$data = $result;
```
<br>
### `Php4ConstructorRector`
2019-05-24 20:30:15 +00:00
- class: `Rector\Php\Rector\FunctionLike\Php4ConstructorRector`
2019-05-24 20:30:15 +00:00
Changes PHP 4 style constructor to __construct.
2019-05-24 20:30:15 +00:00
```diff
class SomeClass
{
- public function SomeClass()
+ public function __construct()
{
}
}
2019-05-24 20:30:15 +00:00
```
<br>
### `PowToExpRector`
- class: `Rector\Php\Rector\FuncCall\PowToExpRector`
Changes pow(val, val2) to ** (exp) parameter
```diff
-pow(1, 2);
+1**2;
```
<br>
### `PreferThisOrSelfMethodCallRector`
- class: `Rector\Php\Rector\MethodCall\PreferThisOrSelfMethodCallRector`
Changes $this->... to self:: or vise versa for specific types
```yaml
services:
Rector\Php\Rector\MethodCall\PreferThisOrSelfMethodCallRector:
PHPUnit\TestCase: self
```
```diff
class SomeClass extends PHPUnit\TestCase
{
public function run()
{
- $this->assertThis();
+ self::assertThis();
}
}
```
<br>
2019-05-29 13:40:20 +00:00
### `PregReplaceEModifierRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\Php\Rector\FuncCall\PregReplaceEModifierRector`
2019-08-06 06:32:12 +00:00
The /e modifier is no longer supported, use preg_replace_callback instead
```diff
class SomeClass
{
2019-05-29 13:40:20 +00:00
public function run()
{
- $comment = preg_replace('~\b(\w)(\w+)~e', '"$1".strtolower("$2")', $comment);
+ $comment = preg_replace_callback('~\b(\w)(\w+)~', function ($matches) {
+ return($matches[1].strtolower($matches[2]));
+ }, , $comment);
}
}
```
<br>
### `PublicConstantVisibilityRector`
- class: `Rector\Php\Rector\ClassConst\PublicConstantVisibilityRector`
2018-10-12 23:15:00 +00:00
Add explicit public constant visibility.
```diff
class SomeClass
{
- const HEY = 'you';
+ public const HEY = 'you';
}
```
<br>
### `RandomFunctionRector`
2018-08-01 20:09:34 +00:00
- class: `Rector\Php\Rector\FuncCall\RandomFunctionRector`
2018-08-01 20:09:34 +00:00
Changes rand, srand and getrandmax by new md_* alternatives.
2018-08-01 20:09:34 +00:00
```diff
-rand();
+mt_rand();
2018-08-01 20:09:34 +00:00
```
<br>
### `RealToFloatTypeCastRector`
2019-05-01 23:56:58 +00:00
- class: `Rector\Php\Rector\Double\RealToFloatTypeCastRector`
2019-05-01 23:56:58 +00:00
Change deprecated (real) to (float)
2019-05-01 23:56:58 +00:00
```diff
class SomeClass
{
public function run()
{
- $number = (real) 5;
+ $number = (float) 5;
$number = (float) 5;
$number = (double) 5;
}
}
2019-05-01 23:56:58 +00:00
```
<br>
### `ReduceMultipleDefaultSwitchRector`
2018-12-31 19:29:12 +00:00
- class: `Rector\Php\Rector\Switch_\ReduceMultipleDefaultSwitchRector`
2018-12-31 19:29:12 +00:00
Remove first default switch, that is ignored
```diff
switch ($expr) {
default:
- echo "Hello World";
-
- default:
echo "Goodbye Moon!";
break;
2018-12-31 19:29:12 +00:00
}
```
<br>
### `RegexDashEscapeRector`
- class: `Rector\Php\Rector\FuncCall\RegexDashEscapeRector`
Escape - in some cases
```diff
-preg_match("#[\w-()]#", 'some text');
+preg_match("#[\w\-()]#", 'some text');
2018-08-01 20:09:34 +00:00
```
<br>
### `RemoveExtraParametersRector`
2018-10-12 23:15:00 +00:00
- class: `Rector\Php\Rector\FuncCall\RemoveExtraParametersRector`
2018-10-12 23:15:00 +00:00
Remove extra parameters
2018-10-12 23:15:00 +00:00
2018-08-01 20:09:34 +00:00
```diff
-strlen("asdf", 1);
+strlen("asdf");
2018-08-01 20:09:34 +00:00
```
<br>
### `RemoveMissingCompactVariableRector`
2018-08-01 20:09:34 +00:00
- class: `Rector\Php\Rector\FuncCall\RemoveMissingCompactVariableRector`
2018-08-01 20:09:34 +00:00
Remove non-existing vars from compact()
2018-08-01 20:09:34 +00:00
```diff
class SomeClass
2019-05-29 13:40:20 +00:00
{
public function run()
{
$value = 'yes';
- compact('value', 'non_existing');
+ compact('value');
2019-05-29 13:40:20 +00:00
}
}
2018-08-01 20:09:34 +00:00
```
<br>
### `RemoveReferenceFromCallRector`
2018-12-31 11:50:32 +00:00
- class: `Rector\Php\Rector\FuncCall\RemoveReferenceFromCallRector`
2018-12-31 11:50:32 +00:00
Remove & from function and method calls
2018-12-31 11:50:32 +00:00
```diff
final class SomeClass
{
public function run($one)
{
- return strlen(&$one);
+ return strlen($one);
}
2018-12-31 11:50:32 +00:00
}
```
<br>
### `RenameConstantRector`
2019-02-21 14:36:16 +00:00
- class: `Rector\Php\Rector\ConstFetch\RenameConstantRector`
2019-02-21 14:36:16 +00:00
Replace constant by new ones
2019-02-21 14:36:16 +00:00
```diff
final class SomeClass
{
public function run()
{
- return MYSQL_ASSOC;
+ return MYSQLI_ASSOC;
}
}
2019-05-29 13:40:20 +00:00
```
<br>
### `RenameMktimeWithoutArgsToTimeRector`
- class: `Rector\Php\Rector\FuncCall\RenameMktimeWithoutArgsToTimeRector`
```diff
class SomeClass
{
public function run()
{
$time = mktime(1, 2, 3);
- $nextTime = mktime();
+ $nextTime = time();
}
}
```
<br>
### `ReservedFnFunctionRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\Php\Rector\Function_\ReservedFnFunctionRector`
2019-05-29 13:40:20 +00:00
Change fn() function name, since it will be reserved keyword
2019-05-29 13:40:20 +00:00
```diff
class SomeClass
2019-02-21 14:36:16 +00:00
{
2019-05-29 13:40:20 +00:00
public function run()
{
- function fn($value)
+ function f($value)
{
return $value;
}
2019-05-29 13:40:20 +00:00
- fn(5);
+ f(5);
2019-02-21 14:36:16 +00:00
}
}
```
<br>
### `ReservedObjectRector`
2018-12-31 19:29:12 +00:00
- class: `Rector\Php\Rector\Name\ReservedObjectRector`
2018-12-31 19:29:12 +00:00
Changes reserved "Object" name to "<Smart>Object" where <Smart> can be configured
2018-12-31 19:29:12 +00:00
2019-05-29 13:40:20 +00:00
```diff
-class Object
+class SmartObject
{
}
2019-05-29 13:40:20 +00:00
```
<br>
### `SensitiveConstantNameRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\Php\Rector\ConstFetch\SensitiveConstantNameRector`
2019-05-29 13:40:20 +00:00
Changes case insensitive constants to sensitive ones.
2018-12-31 19:29:12 +00:00
```diff
define('FOO', 42, true);
var_dump(FOO);
-var_dump(foo);
+var_dump(FOO);
2019-05-29 13:40:20 +00:00
```
<br>
### `SensitiveDefineRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\Php\Rector\FuncCall\SensitiveDefineRector`
2019-05-29 13:40:20 +00:00
Changes case insensitive constants to sensitive ones.
2019-05-29 13:40:20 +00:00
```diff
-define('FOO', 42, true);
+define('FOO', 42);
2018-12-31 19:29:12 +00:00
```
<br>
### `SensitiveHereNowDocRector`
2018-12-31 19:29:12 +00:00
- class: `Rector\Php\Rector\String_\SensitiveHereNowDocRector`
2018-12-31 19:29:12 +00:00
Changes heredoc/nowdoc that contains closing word to safe wrapper name
2018-12-31 19:29:12 +00:00
```diff
-$value = <<<A
+$value = <<<A_WRAP
A
-A
+A_WRAP
2018-12-31 19:29:12 +00:00
```
<br>
### `StaticCallOnNonStaticToInstanceCallRector`
2018-08-01 20:09:34 +00:00
- class: `Rector\Php\Rector\StaticCall\StaticCallOnNonStaticToInstanceCallRector`
2018-10-12 23:15:00 +00:00
Changes static call to instance call, where not useful
2018-08-01 20:09:34 +00:00
```diff
class Something
{
public function doWork()
{
}
}
2018-08-01 20:09:34 +00:00
class Another
{
public function run()
{
- return Something::doWork();
+ return (new Something)->doWork();
}
}
```
<br>
### `StringClassNameToClassConstantRector`
2018-08-01 20:09:34 +00:00
- class: `Rector\Php\Rector\String_\StringClassNameToClassConstantRector`
2018-10-12 23:15:00 +00:00
Replace string class names by <class>::class constant
2018-08-01 20:09:34 +00:00
```diff
class AnotherClass
{
}
class SomeClass
{
public function run()
{
- return 'AnotherClass';
+ return \AnotherClass::class;
}
}
2018-08-01 20:09:34 +00:00
```
<br>
### `StringifyDefineRector`
2018-12-31 19:29:12 +00:00
- class: `Rector\Php\Rector\FuncCall\StringifyDefineRector`
2018-12-31 19:29:12 +00:00
Make first argument of define() string
2018-12-31 19:29:12 +00:00
```diff
class SomeClass
2019-05-29 13:40:20 +00:00
{
public function run(int $a)
{
- define(CONSTANT_2, 'value');
+ define('CONSTANT_2', 'value');
define('CONSTANT', 'value');
}
2019-05-29 13:40:20 +00:00
}
```
<br>
### `StringifyStrNeedlesRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\Php\Rector\FuncCall\StringifyStrNeedlesRector`
2019-05-29 13:40:20 +00:00
Makes needles explicit strings
2019-05-29 13:40:20 +00:00
```diff
$needle = 5;
-$fivePosition = strpos('725', $needle);
+$fivePosition = strpos('725', (string) $needle);
```
2018-12-31 19:29:12 +00:00
2019-05-29 13:40:20 +00:00
<br>
### `StringsAssertNakedRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\Php\Rector\FuncCall\StringsAssertNakedRector`
2019-05-29 13:40:20 +00:00
String asserts must be passed directly to assert()
2019-05-29 13:40:20 +00:00
```diff
function nakedAssert()
{
- assert('true === true');
- assert("true === true");
+ assert(true === true);
+ assert(true === true);
}
2018-12-31 19:29:12 +00:00
```
<br>
### `SwapFuncCallArgumentsRector`
2019-03-31 12:25:39 +00:00
- class: `Rector\Php\Rector\FuncCall\SwapFuncCallArgumentsRector`
2019-03-31 12:25:39 +00:00
Swap arguments in function calls
2019-03-31 12:25:39 +00:00
```diff
final class SomeClass
2019-03-31 12:25:39 +00:00
{
public function run($one, $two)
2019-03-31 12:25:39 +00:00
{
- return some_function($one, $two);
+ return some_function($two, $one);
2019-03-31 12:25:39 +00:00
}
}
```
<br>
### `TernaryToNullCoalescingRector`
2019-03-31 12:25:39 +00:00
- class: `Rector\Php\Rector\Ternary\TernaryToNullCoalescingRector`
2019-03-31 12:25:39 +00:00
Changes unneeded null check to ?? operator
2019-03-31 12:25:39 +00:00
```diff
-$value === null ? 10 : $value;
+$value ?? 10;
```
2019-03-31 12:25:39 +00:00
```diff
-isset($value) ? $value : 10;
+$value ?? 10;
```
<br>
### `TernaryToSpaceshipRector`
- class: `Rector\Php\Rector\Ternary\TernaryToSpaceshipRector`
Use <=> spaceship instead of ternary with same effect
```diff
function order_func($a, $b) {
- return ($a < $b) ? -1 : (($a > $b) ? 1 : 0);
+ return $a <=> $b;
}
```
<br>
### `ThisCallOnStaticMethodToStaticCallRector`
- class: `Rector\Php\Rector\MethodCall\ThisCallOnStaticMethodToStaticCallRector`
Changes $this->call() to static method to static call
```diff
class SomeClass
{
public static function run()
{
- $this->eat();
+ self::eat();
}
public static function eat()
{
}
}
```
<br>
### `TypedPropertyRector`
- class: `Rector\Php\Rector\Property\TypedPropertyRector`
Changes property `@var` annotations from annotation to type.
```diff
final class SomeClass
{
- /**
- * @var int
- */
- private count;
+ private int count;
}
```
<br>
### `UnsetCastRector`
- class: `Rector\Php\Rector\Unset_\UnsetCastRector`
Removes (unset) cast
```diff
-$value = (unset) $value;
+$value = null;
```
<br>
### `VarToPublicPropertyRector`
- class: `Rector\Php\Rector\Property\VarToPublicPropertyRector`
Remove unused private method
```diff
final class SomeController
{
- var $name = 'Tom';
+ public $name = 'Tom';
}
```
<br>
### `WhileEachToForeachRector`
- class: `Rector\Php\Rector\Each\WhileEachToForeachRector`
each() function is deprecated, use foreach() instead.
```diff
-while (list($key, $callback) = each($callbacks)) {
+foreach ($callbacks as $key => $callback) {
// ...
}
```
```diff
-while (list($key) = each($callbacks)) {
+foreach (array_keys($callbacks) as $key) {
// ...
}
```
<br>
## PhpSpecToPHPUnit
### `AddMockPropertiesRector`
- class: `Rector\PhpSpecToPHPUnit\Rector\Class_\AddMockPropertiesRector`
Migrate PhpSpec behavior to PHPUnit test
```diff
namespace spec\SomeNamespaceForThisTest;
-use PhpSpec\ObjectBehavior;
-
class OrderSpec extends ObjectBehavior
{
- public function let(OrderFactory $factory, ShippingMethod $shippingMethod)
+ /**
+ * @var \SomeNamespaceForThisTest\Order
+ */
+ private $order;
+ protected function setUp()
2019-03-31 12:25:39 +00:00
{
- $factory->createShippingMethodFor(Argument::any())->shouldBeCalled()->willReturn($shippingMethod);
+ /** @var OrderFactory|\PHPUnit\Framework\MockObject\MockObject $factory */
+ $factory = $this->createMock(OrderFactory::class);
+
+ /** @var ShippingMethod|\PHPUnit\Framework\MockObject\MockObject $shippingMethod */
+ $shippingMethod = $this->createMock(ShippingMethod::class);
+
+ $factory->expects($this->once())->method('createShippingMethodFor')->willReturn($shippingMethod);
}
}
```
<br>
### `MockVariableToPropertyFetchRector`
2019-03-31 12:25:39 +00:00
- class: `Rector\PhpSpecToPHPUnit\Rector\ClassMethod\MockVariableToPropertyFetchRector`
2019-03-31 12:25:39 +00:00
Migrate PhpSpec behavior to PHPUnit test
```diff
namespace spec\SomeNamespaceForThisTest;
-use PhpSpec\ObjectBehavior;
-
class OrderSpec extends ObjectBehavior
{
- public function let(OrderFactory $factory, ShippingMethod $shippingMethod)
+ /**
+ * @var \SomeNamespaceForThisTest\Order
+ */
+ private $order;
+ protected function setUp()
{
- $factory->createShippingMethodFor(Argument::any())->shouldBeCalled()->willReturn($shippingMethod);
+ /** @var OrderFactory|\PHPUnit\Framework\MockObject\MockObject $factory */
+ $factory = $this->createMock(OrderFactory::class);
+
+ /** @var ShippingMethod|\PHPUnit\Framework\MockObject\MockObject $shippingMethod */
+ $shippingMethod = $this->createMock(ShippingMethod::class);
+
+ $factory->expects($this->once())->method('createShippingMethodFor')->willReturn($shippingMethod);
}
}
```
<br>
### `PhpSpecClassToPHPUnitClassRector`
2019-03-31 12:25:39 +00:00
- class: `Rector\PhpSpecToPHPUnit\Rector\Class_\PhpSpecClassToPHPUnitClassRector`
2019-03-31 12:25:39 +00:00
Migrate PhpSpec behavior to PHPUnit test
```diff
namespace spec\SomeNamespaceForThisTest;
-use PhpSpec\ObjectBehavior;
-
class OrderSpec extends ObjectBehavior
{
- public function let(OrderFactory $factory, ShippingMethod $shippingMethod)
+ /**
+ * @var \SomeNamespaceForThisTest\Order
+ */
+ private $order;
+ protected function setUp()
{
- $factory->createShippingMethodFor(Argument::any())->shouldBeCalled()->willReturn($shippingMethod);
+ /** @var OrderFactory|\PHPUnit\Framework\MockObject\MockObject $factory */
+ $factory = $this->createMock(OrderFactory::class);
+
+ /** @var ShippingMethod|\PHPUnit\Framework\MockObject\MockObject $shippingMethod */
+ $shippingMethod = $this->createMock(ShippingMethod::class);
+
+ $factory->expects($this->once())->method('createShippingMethodFor')->willReturn($shippingMethod);
}
}
```
<br>
### `PhpSpecMethodToPHPUnitMethodRector`
2019-03-16 20:31:46 +00:00
- class: `Rector\PhpSpecToPHPUnit\Rector\ClassMethod\PhpSpecMethodToPHPUnitMethodRector`
2019-03-16 20:31:46 +00:00
2019-03-31 12:25:39 +00:00
Migrate PhpSpec behavior to PHPUnit test
2019-03-16 20:31:46 +00:00
```diff
2019-03-31 12:25:39 +00:00
namespace spec\SomeNamespaceForThisTest;
2019-03-16 20:31:46 +00:00
2019-03-31 12:25:39 +00:00
-use PhpSpec\ObjectBehavior;
-
class OrderSpec extends ObjectBehavior
2019-03-16 20:31:46 +00:00
{
2019-03-31 12:25:39 +00:00
- public function let(OrderFactory $factory, ShippingMethod $shippingMethod)
+ /**
+ * @var \SomeNamespaceForThisTest\Order
+ */
+ private $order;
2019-03-16 20:31:46 +00:00
+ protected function setUp()
{
2019-03-31 12:25:39 +00:00
- $factory->createShippingMethodFor(Argument::any())->shouldBeCalled()->willReturn($shippingMethod);
+ /** @var OrderFactory|\PHPUnit\Framework\MockObject\MockObject $factory */
+ $factory = $this->createMock(OrderFactory::class);
+
+ /** @var ShippingMethod|\PHPUnit\Framework\MockObject\MockObject $shippingMethod */
+ $shippingMethod = $this->createMock(ShippingMethod::class);
+
+ $factory->expects($this->once())->method('createShippingMethodFor')->willReturn($shippingMethod);
2019-03-16 20:31:46 +00:00
}
2019-03-31 12:25:39 +00:00
}
```
<br>
### `PhpSpecMocksToPHPUnitMocksRector`
2019-03-31 12:25:39 +00:00
- class: `Rector\PhpSpecToPHPUnit\Rector\MethodCall\PhpSpecMocksToPHPUnitMocksRector`
2019-03-16 20:31:46 +00:00
2019-03-31 12:25:39 +00:00
Migrate PhpSpec behavior to PHPUnit test
```diff
namespace spec\SomeNamespaceForThisTest;
-use PhpSpec\ObjectBehavior;
-
class OrderSpec extends ObjectBehavior
{
- public function let(OrderFactory $factory, ShippingMethod $shippingMethod)
+ /**
+ * @var \SomeNamespaceForThisTest\Order
+ */
+ private $order;
+ protected function setUp()
2019-03-16 20:31:46 +00:00
{
2019-03-31 12:25:39 +00:00
- $factory->createShippingMethodFor(Argument::any())->shouldBeCalled()->willReturn($shippingMethod);
+ /** @var OrderFactory|\PHPUnit\Framework\MockObject\MockObject $factory */
+ $factory = $this->createMock(OrderFactory::class);
+
+ /** @var ShippingMethod|\PHPUnit\Framework\MockObject\MockObject $shippingMethod */
+ $shippingMethod = $this->createMock(ShippingMethod::class);
+
+ $factory->expects($this->once())->method('createShippingMethodFor')->willReturn($shippingMethod);
2019-03-16 20:31:46 +00:00
}
}
```
<br>
### `PhpSpecPromisesToPHPUnitAssertRector`
- class: `Rector\PhpSpecToPHPUnit\Rector\MethodCall\PhpSpecPromisesToPHPUnitAssertRector`
Migrate PhpSpec behavior to PHPUnit test
```diff
namespace spec\SomeNamespaceForThisTest;
-use PhpSpec\ObjectBehavior;
-
class OrderSpec extends ObjectBehavior
{
- public function let(OrderFactory $factory, ShippingMethod $shippingMethod)
+ /**
+ * @var \SomeNamespaceForThisTest\Order
+ */
+ private $order;
+ protected function setUp()
{
- $factory->createShippingMethodFor(Argument::any())->shouldBeCalled()->willReturn($shippingMethod);
+ /** @var OrderFactory|\PHPUnit\Framework\MockObject\MockObject $factory */
+ $factory = $this->createMock(OrderFactory::class);
+
+ /** @var ShippingMethod|\PHPUnit\Framework\MockObject\MockObject $shippingMethod */
+ $shippingMethod = $this->createMock(ShippingMethod::class);
+
+ $factory->expects($this->once())->method('createShippingMethodFor')->willReturn($shippingMethod);
}
}
```
<br>
### `RenameSpecFileToTestFileRector`
2019-09-15 18:28:10 +00:00
- class: `Rector\PhpSpecToPHPUnit\Rector\FileSystem\RenameSpecFileToTestFileRector`
Rename "*Spec.php" file to "*Test.php" file
<br>
## RemovingStatic
2019-05-01 23:56:58 +00:00
2019-05-29 13:40:20 +00:00
### `NewUniqueObjectToEntityFactoryRector`
2019-05-01 23:56:58 +00:00
2019-05-29 13:40:20 +00:00
- class: `Rector\RemovingStatic\Rector\Class_\NewUniqueObjectToEntityFactoryRector`
2019-05-01 23:56:58 +00:00
2019-05-29 13:40:20 +00:00
Convert new X to new factories
2019-05-01 23:56:58 +00:00
```diff
-<?php
-
class SomeClass
{
+ public function __construct(AnotherClassFactory $anotherClassFactory)
+ {
+ $this->anotherClassFactory = $anotherClassFactory;
+ }
+
public function run()
{
- return new AnotherClass;
+ return $this->anotherClassFactory->create();
}
}
class AnotherClass
{
public function someFun()
{
return StaticClass::staticMethod();
}
}
```
<br>
### `PHPUnitStaticToKernelTestCaseGetRector`
- class: `Rector\RemovingStatic\Rector\Class_\PHPUnitStaticToKernelTestCaseGetRector`
Convert static calls in PHPUnit test cases, to get() from the container of KernelTestCase
```yaml
services:
Rector\RemovingStatic\Rector\Class_\PHPUnitStaticToKernelTestCaseGetRector:
staticClassTypes:
- EntityFactory
```
```diff
-<?php
+use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
-use PHPUnit\Framework\TestCase;
+final class SomeTestCase extends KernelTestCase
+{
+ /**
+ * @var EntityFactory
+ */
+ private $entityFactory;
+
+ protected function setUp(): void
+ {
+ parent::setUp();
+ $this->entityFactory = self::$container->get(EntityFactory::class);
+ }
-final class SomeTestCase extends TestCase
-{
public function test()
{
- $product = EntityFactory::create('product');
+ $product = $this->entityFactory->create('product');
}
}
```
<br>
2019-05-01 23:56:58 +00:00
### `PassFactoryToUniqueObjectRector`
- class: `Rector\RemovingStatic\Rector\Class_\PassFactoryToUniqueObjectRector`
Convert new X/Static::call() to factories in entities, pass them via constructor to each other
```yaml
services:
Rector\RemovingStatic\Rector\Class_\PassFactoryToUniqueObjectRector:
typesToServices:
- StaticClass
```
```diff
-<?php
-
class SomeClass
{
+ public function __construct(AnotherClassFactory $anotherClassFactory)
+ {
+ $this->anotherClassFactory = $anotherClassFactory;
+ }
+
public function run()
{
- return new AnotherClass;
+ return $this->anotherClassFactory->create();
}
}
class AnotherClass
{
+ public function __construct(StaticClass $staticClass)
+ {
+ $this->staticClass = $staticClass;
+ }
+
public function someFun()
{
- return StaticClass::staticMethod();
+ return $this->staticClass->staticMethod();
+ }
+}
+
+final class AnotherClassFactory
+{
+ /**
+ * @var StaticClass
+ */
+ private $staticClass;
+
+ public function __construct(StaticClass $staticClass)
+ {
+ $this->staticClass = $staticClass;
+ }
+
+ public function create(): AnotherClass
+ {
+ return new AnotherClass($this->staticClass);
}
}
```
<br>
2019-05-29 13:40:20 +00:00
### `StaticTypeToSetterInjectionRector`
2019-05-01 23:56:58 +00:00
2019-05-29 13:40:20 +00:00
- class: `Rector\RemovingStatic\Rector\Class_\StaticTypeToSetterInjectionRector`
2019-05-01 23:56:58 +00:00
2019-05-29 13:40:20 +00:00
Changes types to setter injection
2019-05-01 23:56:58 +00:00
2019-05-29 13:40:20 +00:00
```yaml
services:
Rector\RemovingStatic\Rector\Class_\StaticTypeToSetterInjectionRector:
$staticTypes:
- SomeStaticClass
```
2019-05-01 23:56:58 +00:00
```diff
2019-05-29 13:40:20 +00:00
<?php
final class CheckoutEntityFactory
2019-05-01 23:56:58 +00:00
{
2019-05-29 13:40:20 +00:00
+ /**
+ * @var SomeStaticClass
+ */
+ private $someStaticClass;
+
+ public function setSomeStaticClass(SomeStaticClass $someStaticClass)
+ {
+ $this->someStaticClass = $someStaticClass;
+ }
+
public function run()
{
- return SomeStaticClass::go();
+ return $this->someStaticClass->go();
}
-}
+}
```
2019-05-01 23:56:58 +00:00
2019-05-29 13:40:20 +00:00
<br>
2019-08-05 21:10:47 +00:00
## Restoration
### `CompleteImportForPartialAnnotationRector`
- class: `Rector\Restoration\Rector\Namespace_\CompleteImportForPartialAnnotationRector`
In case you have accidentally removed use imports but code still contains partial use statements, this will save you
```yaml
services:
Rector\Restoration\Rector\Namespace_\CompleteImportForPartialAnnotationRector:
$useImportToRestore:
-
- Doctrine\ORM\Mapping
- ORM
```
```diff
+use Doctrine\ORM\Mapping as ORM;
+
class SomeClass
{
/**
* @ORM\Id
*/
public $id;
}
```
<br>
## SOLID
2019-05-29 13:40:20 +00:00
### `FinalizeClassesWithoutChildrenRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\SOLID\Rector\Class_\FinalizeClassesWithoutChildrenRector`
2019-05-29 13:40:20 +00:00
Finalize every class that has no children
2019-05-29 13:40:20 +00:00
```diff
-class FirstClass
+final class FirstClass
{
}
2019-05-29 13:40:20 +00:00
class SecondClass
{
}
2019-05-29 13:40:20 +00:00
-class ThirdClass extends SecondClass
+final class ThirdClass extends SecondClass
{
2019-05-01 23:56:58 +00:00
}
```
<br>
### `MakeUnusedClassesWithChildrenAbstractRector`
- class: `Rector\SOLID\Rector\Class_\MakeUnusedClassesWithChildrenAbstractRector`
Classes that have no children nor are used, should have abstract
```diff
class SomeClass extends PossibleAbstractClass
{
}
-class PossibleAbstractClass
+abstract class PossibleAbstractClass
{
}
```
<br>
2019-05-29 13:40:20 +00:00
### `PrivatizeLocalClassConstantRector`
- class: `Rector\SOLID\Rector\ClassConst\PrivatizeLocalClassConstantRector`
Finalize every class constant that is used only locally
```diff
class ClassWithConstantUsedOnlyHere
{
- const LOCAL_ONLY = true;
+ private const LOCAL_ONLY = true;
public function isLocalOnly()
{
return self::LOCAL_ONLY;
}
}
```
<br>
## Sensio
2018-12-31 11:50:32 +00:00
### `TemplateAnnotationRector`
2018-12-31 11:50:32 +00:00
- class: `Rector\Sensio\Rector\FrameworkExtraBundle\TemplateAnnotationRector`
Turns `@Template` annotation to explicit method call in Controller of FrameworkExtraBundle in Symfony
2018-12-31 11:50:32 +00:00
```diff
-/**
- * @Template()
- */
public function indexAction()
{
+ return $this->render("index.html.twig");
}
2018-12-31 11:50:32 +00:00
```
<br>
2019-03-16 20:31:46 +00:00
## Shopware
### `ReplaceEnlightResponseWithSymfonyResponseRector`
- class: `Rector\Shopware\Rector\MethodCall\ReplaceEnlightResponseWithSymfonyResponseRector`
Replace Enlight Response methods with Symfony Response methods
```diff
class FrontendController extends \Enlight_Controller_Action
{
public function run()
{
- $this->Response()->setHeader('Foo', 'Yea');
+ $this->Response()->headers->set('Foo', 'Yea');
}
}
```
<br>
### `ShopRegistrationServiceRector`
- class: `Rector\Shopware\Rector\MethodCall\ShopRegistrationServiceRector`
Replace $shop->registerResources() with ShopRegistrationService
```diff
class SomeClass
{
public function run()
{
$shop = new \Shopware\Models\Shop\Shop();
- $shop->registerResources();
+ Shopware()->Container()->get('shopware.components.shop_registration_service')->registerShop($shop);
}
}
```
<br>
### `ShopwareVersionConstsRector`
- class: `Rector\Shopware\Rector\ClassConstFetch\ShopwareVersionConstsRector`
Use version from di parameter
```diff
class SomeClass
{
public function run()
{
- echo \Shopware::VERSION;
+ echo Shopware()->Container()->getParameter('shopware.release.version');
}
}
```
<br>
## Silverstripe
2018-10-21 22:26:45 +00:00
### `ConstantToStaticCallRector`
2018-10-21 22:26:45 +00:00
- class: `Rector\Silverstripe\Rector\ConstantToStaticCallRector`
2018-10-21 22:26:45 +00:00
Turns defined constant to static method call.
2018-10-21 22:26:45 +00:00
```diff
-SS_DATABASE_NAME;
+Environment::getEnv("SS_DATABASE_NAME");
2018-10-21 22:26:45 +00:00
```
<br>
### `DefineConstantToStaticCallRector`
- class: `Rector\Silverstripe\Rector\DefineConstantToStaticCallRector`
Turns defined function call to static method call.
```diff
-defined("SS_DATABASE_NAME");
+Environment::getEnv("SS_DATABASE_NAME");
```
<br>
## Sylius
2018-08-01 20:09:34 +00:00
### `ReplaceCreateMethodWithoutReviewerRector`
- class: `Rector\Sylius\Rector\Review\ReplaceCreateMethodWithoutReviewerRector`
Turns `createForSubjectWithReviewer()` with null review to standalone method in Sylius
```diff
-$this->createForSubjectWithReviewer($subject, null)
+$this->createForSubject($subject)
```
<br>
## Symfony
2018-08-01 20:09:34 +00:00
### `ActionSuffixRemoverRector`
2018-10-21 22:26:45 +00:00
- class: `Rector\Symfony\Rector\Controller\ActionSuffixRemoverRector`
2018-10-21 22:26:45 +00:00
Removes Action suffixes from methods in Symfony Controllers
2018-10-21 22:26:45 +00:00
```diff
class SomeController
{
- public function indexAction()
+ public function index()
{
}
}
2018-10-21 22:26:45 +00:00
```
<br>
2019-05-29 13:40:20 +00:00
### `AddFlashRector`
2018-08-01 20:09:34 +00:00
2019-05-29 13:40:20 +00:00
- class: `Rector\Symfony\Rector\Controller\AddFlashRector`
2018-08-01 20:09:34 +00:00
2019-05-29 13:40:20 +00:00
Turns long flash adding to short helper method in Controller in Symfony
2018-08-01 20:09:34 +00:00
```diff
2019-05-29 13:40:20 +00:00
class SomeController extends Controller
2018-08-01 20:09:34 +00:00
{
2019-05-29 13:40:20 +00:00
public function some(Request $request)
{
2019-05-29 13:40:20 +00:00
- $request->getSession()->getFlashBag()->add("success", "something");
+ $this->addFlash("success", "something");
}
2018-08-01 20:09:34 +00:00
}
```
<br>
### `CascadeValidationFormBuilderRector`
2018-09-28 16:33:35 +00:00
- class: `Rector\Symfony\Rector\MethodCall\CascadeValidationFormBuilderRector`
2018-09-28 16:33:35 +00:00
Change "cascade_validation" option to specific node attribute
2018-09-28 16:33:35 +00:00
```diff
class SomeController
{
public function someMethod()
{
- $form = $this->createFormBuilder($article, ['cascade_validation' => true])
- ->add('author', new AuthorType())
+ $form = $this->createFormBuilder($article)
+ ->add('author', new AuthorType(), [
+ 'constraints' => new \Symfony\Component\Validator\Constraints\Valid(),
+ ])
->getForm();
}
2018-09-28 16:33:35 +00:00
protected function createFormBuilder()
{
return new FormBuilder();
}
}
2018-09-28 16:33:35 +00:00
```
<br>
### `ConsoleExceptionToErrorEventConstantRector`
2019-05-01 23:56:58 +00:00
- class: `Rector\Symfony\Rector\Console\ConsoleExceptionToErrorEventConstantRector`
2019-05-01 23:56:58 +00:00
Turns old event name with EXCEPTION to ERROR constant in Console in Symfony
2019-05-01 23:56:58 +00:00
```diff
-"console.exception"
+Symfony\Component\Console\ConsoleEvents::ERROR
2019-05-29 13:40:20 +00:00
```
2019-05-01 23:56:58 +00:00
2019-05-29 13:40:20 +00:00
```diff
-Symfony\Component\Console\ConsoleEvents::EXCEPTION
+Symfony\Component\Console\ConsoleEvents::ERROR
2019-05-01 23:56:58 +00:00
```
<br>
### `ConstraintUrlOptionRector`
- class: `Rector\Symfony\Rector\Validator\ConstraintUrlOptionRector`
Turns true value to `Url::CHECK_DNS_TYPE_ANY` in Validator in Symfony.
```diff
-$constraint = new Url(["checkDNS" => true]);
+$constraint = new Url(["checkDNS" => Url::CHECK_DNS_TYPE_ANY]);
```
<br>
### `ContainerBuilderCompileEnvArgumentRector`
- class: `Rector\Symfony\Rector\DependencyInjection\ContainerBuilderCompileEnvArgumentRector`
Turns old default value to parameter in ContinerBuilder->build() method in DI in Symfony
2018-07-31 12:50:39 +00:00
```diff
-$containerBuilder = new Symfony\Component\DependencyInjection\ContainerBuilder(); $containerBuilder->compile();
+$containerBuilder = new Symfony\Component\DependencyInjection\ContainerBuilder(); $containerBuilder->compile(true);
2018-07-31 12:50:39 +00:00
```
<br>
2019-05-29 13:40:20 +00:00
### `ContainerGetToConstructorInjectionRector`
2019-03-31 12:25:39 +00:00
2019-05-29 13:40:20 +00:00
- class: `Rector\Symfony\Rector\FrameworkBundle\ContainerGetToConstructorInjectionRector`
2019-03-31 12:25:39 +00:00
2019-05-29 13:40:20 +00:00
Turns fetching of dependencies via `$container->get()` in ContainerAware to constructor injection in Command and Controller in Symfony
2019-03-31 12:25:39 +00:00
```diff
2019-05-29 13:40:20 +00:00
-final class SomeCommand extends ContainerAwareCommand
+final class SomeCommand extends Command
2019-03-31 12:25:39 +00:00
{
2019-05-29 13:40:20 +00:00
+ public function __construct(SomeService $someService)
+ {
+ $this->someService = $someService;
+ }
+
public function someMethod()
2019-03-31 12:25:39 +00:00
{
2019-05-29 13:40:20 +00:00
// ...
- $this->getContainer()->get('some_service');
- $this->container->get('some_service');
+ $this->someService;
+ $this->someService;
2019-03-31 12:25:39 +00:00
}
}
```
<br>
### `FormIsValidRector`
2018-05-04 22:30:32 +00:00
- class: `Rector\Symfony\Rector\Form\FormIsValidRector`
Adds `$form->isSubmitted()` validatoin to all `$form->isValid()` calls in Form in Symfony
2018-05-04 22:30:32 +00:00
```diff
-if ($form->isValid()) {
+if ($form->isSubmitted() && $form->isValid()) {
2018-05-04 22:30:32 +00:00
}
```
<br>
### `FormTypeGetParentRector`
- class: `Rector\Symfony\Rector\Form\FormTypeGetParentRector`
2018-05-04 22:30:32 +00:00
Turns string Form Type references to their CONSTANT alternatives in `getParent()` and `getExtendedType()` methods in Form in Symfony
2018-05-04 22:30:32 +00:00
```diff
-function getParent() { return "collection"; }
+function getParent() { return CollectionType::class; }
2018-05-04 22:30:32 +00:00
```
```diff
-function getExtendedType() { return "collection"; }
+function getExtendedType() { return CollectionType::class; }
2018-05-04 22:30:32 +00:00
```
<br>
2019-05-29 13:40:20 +00:00
### `FormTypeInstanceToClassConstRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\Symfony\Rector\MethodCall\FormTypeInstanceToClassConstRector`
2018-05-04 22:30:32 +00:00
2019-05-29 13:40:20 +00:00
Changes createForm(new FormType), add(new FormType) to ones with "FormType::class"
2018-05-04 22:30:32 +00:00
```diff
2019-05-29 13:40:20 +00:00
class SomeController
{
public function action()
{
- $form = $this->createForm(new TeamType, $entity, [
+ $form = $this->createForm(TeamType::class, $entity, [
'action' => $this->generateUrl('teams_update', ['id' => $entity->getId()]),
'method' => 'PUT',
2019-09-15 18:28:10 +00:00
]);
2019-05-29 13:40:20 +00:00
}
2018-08-01 20:09:34 +00:00
}
2018-05-04 22:30:32 +00:00
```
<br>
### `GetParameterToConstructorInjectionRector`
2018-10-23 18:58:57 +00:00
- class: `Rector\Symfony\Rector\FrameworkBundle\GetParameterToConstructorInjectionRector`
2018-10-23 18:58:57 +00:00
Turns fetching of parameters via `getParameter()` in ContainerAware to constructor injection in Command and Controller in Symfony
2018-10-23 18:58:57 +00:00
```diff
-class MyCommand extends ContainerAwareCommand
+class MyCommand extends Command
2019-05-29 13:40:20 +00:00
{
+ private $someParameter;
+
+ public function __construct($someParameter)
+ {
+ $this->someParameter = $someParameter;
+ }
+
public function someMethod()
{
- $this->getParameter('someParameter');
+ $this->someParameter;
}
2019-05-29 13:40:20 +00:00
}
2018-10-12 23:15:00 +00:00
```
<br>
2018-10-23 18:58:57 +00:00
### `GetRequestRector`
2018-10-23 18:58:57 +00:00
- class: `Rector\Symfony\Rector\HttpKernel\GetRequestRector`
2018-10-23 18:58:57 +00:00
Turns fetching of dependencies via `$this->get()` to constructor injection in Command and Controller in Symfony
2018-10-23 18:58:57 +00:00
```diff
+use Symfony\Component\HttpFoundation\Request;
+
class SomeController
2019-05-29 13:40:20 +00:00
{
- public function someAction()
+ public function someAction(Request $request)
2019-05-29 13:40:20 +00:00
{
- $this->getRequest()->...();
+ $request->...();
2019-05-29 13:40:20 +00:00
}
}
```
2019-05-29 13:40:20 +00:00
<br>
2019-05-29 13:40:20 +00:00
### `GetToConstructorInjectionRector`
- class: `Rector\Symfony\Rector\FrameworkBundle\GetToConstructorInjectionRector`
Turns fetching of dependencies via `$this->get()` to constructor injection in Command and Controller in Symfony
```diff
-class MyCommand extends ContainerAwareCommand
+class MyCommand extends Command
{
+ public function __construct(SomeService $someService)
+ {
+ $this->someService = $someService;
+ }
+
public function someMethod()
2019-05-29 13:40:20 +00:00
{
- // ...
- $this->get('some_service');
+ $this->someService;
2019-05-29 13:40:20 +00:00
}
}
```
<br>
2019-06-06 13:01:53 +00:00
### `MakeCommandLazyRector`
- class: `Rector\Symfony\Rector\Class_\MakeCommandLazyRector`
Make Symfony commands lazy
```diff
use Symfony\Component\Console\Command\Command
class SunshineCommand extends Command
{
+ protected static $defaultName = 'sunshine';
public function configure()
{
- $this->setName('sunshine');
}
}
```
<br>
2019-05-29 13:40:20 +00:00
### `MakeDispatchFirstArgumentEventRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\Symfony\Rector\MethodCall\MakeDispatchFirstArgumentEventRector`
2019-05-29 13:40:20 +00:00
Make event object a first argument of dispatch() method, event name as second
```diff
2019-05-29 13:40:20 +00:00
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
class SomeClass
{
2019-06-06 13:01:53 +00:00
public function run(EventDispatcherInterface $eventDispatcher)
2019-05-29 13:40:20 +00:00
{
2019-06-06 13:01:53 +00:00
- $eventDispatcher->dispatch('event_name', new Event());
+ $eventDispatcher->dispatch(new Event(), 'event_name');
2019-05-29 13:40:20 +00:00
}
}
```
2019-05-29 13:40:20 +00:00
<br>
### `OptionNameRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\Symfony\Rector\Form\OptionNameRector`
2019-05-29 13:40:20 +00:00
Turns old option names to new ones in FormTypes in Form in Symfony
2019-05-29 13:40:20 +00:00
```diff
$builder = new FormBuilder;
-$builder->add("...", ["precision" => "...", "virtual" => "..."];
+$builder->add("...", ["scale" => "...", "inherit_data" => "..."];
2019-05-29 13:40:20 +00:00
```
<br>
### `ParseFileRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\Symfony\Rector\Yaml\ParseFileRector`
2019-05-29 13:40:20 +00:00
session > use_strict_mode is true by default and can be removed
2019-05-29 13:40:20 +00:00
```diff
-session > use_strict_mode: true
+session:
2019-05-29 13:40:20 +00:00
```
<br>
### `ProcessBuilderGetProcessRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\Symfony\Rector\Process\ProcessBuilderGetProcessRector`
2019-05-29 13:40:20 +00:00
Removes `$processBuilder->getProcess()` calls to $processBuilder in Process in Symfony, because ProcessBuilder was removed. This is part of multi-step Rector and has very narrow focus.
2019-05-29 13:40:20 +00:00
```diff
$processBuilder = new Symfony\Component\Process\ProcessBuilder;
-$process = $processBuilder->getProcess();
-$commamdLine = $processBuilder->getProcess()->getCommandLine();
+$process = $processBuilder;
+$commamdLine = $processBuilder->getCommandLine();
```
2018-10-23 18:58:57 +00:00
<br>
### `ProcessBuilderInstanceRector`
2018-05-04 22:30:32 +00:00
- class: `Rector\Symfony\Rector\Process\ProcessBuilderInstanceRector`
2018-05-04 22:30:32 +00:00
Turns `ProcessBuilder::instance()` to new ProcessBuilder in Process in Symfony. Part of multi-step Rector.
2018-07-31 12:50:39 +00:00
```diff
-$processBuilder = Symfony\Component\Process\ProcessBuilder::instance($args);
+$processBuilder = new Symfony\Component\Process\ProcessBuilder($args);
```
<br>
### `ReadOnlyOptionToAttributeRector`
- class: `Rector\Symfony\Rector\MethodCall\ReadOnlyOptionToAttributeRector`
Change "read_only" option in form to attribute
```diff
use Symfony\Component\Form\FormBuilderInterface;
function buildForm(FormBuilderInterface $builder, array $options)
{
- $builder->add('cuid', TextType::class, ['read_only' => true]);
2019-09-06 20:08:48 +00:00
+ $builder->add('cuid', TextType::class, ['attr' => ['read_only' => true]]);
}
```
<br>
### `RedirectToRouteRector`
- class: `Rector\Symfony\Rector\Controller\RedirectToRouteRector`
Turns redirect to route to short helper method in Controller in Symfony
```diff
-$this->redirect($this->generateUrl("homepage"));
+$this->redirectToRoute("homepage");
2018-05-04 22:30:32 +00:00
```
<br>
2019-05-29 13:40:20 +00:00
### `ResponseStatusCodeRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\Symfony\Rector\BinaryOp\ResponseStatusCodeRector`
2019-05-29 13:40:20 +00:00
Turns status code numbers to constants
```diff
2019-05-29 13:40:20 +00:00
class SomeController
{
public function index()
{
$response = new \Symfony\Component\HttpFoundation\Response();
- $response->setStatusCode(200);
+ $response->setStatusCode(\Symfony\Component\HttpFoundation\Response::HTTP_OK);
- if ($response->getStatusCode() === 200) {}
+ if ($response->getStatusCode() === \Symfony\Component\HttpFoundation\Response::HTTP_OK) {}
}
}
```
<br>
### `RootNodeTreeBuilderRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\Symfony\Rector\New_\RootNodeTreeBuilderRector`
2019-05-29 13:40:20 +00:00
Changes Process string argument to an array
2019-05-29 13:40:20 +00:00
```diff
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
-$treeBuilder = new TreeBuilder();
-$rootNode = $treeBuilder->root('acme_root');
+$treeBuilder = new TreeBuilder('acme_root');
+$rootNode = $treeBuilder->getRootNode();
$rootNode->someCall();
```
<br>
### `SimplifyWebTestCaseAssertionsRector`
- class: `Rector\Symfony\Rector\MethodCall\SimplifyWebTestCaseAssertionsRector`
Simplify use of assertions in WebTestCase
```diff
use PHPUnit\Framework\TestCase;
class SomeClass extends TestCase
2019-05-29 13:40:20 +00:00
{
public function test()
2019-05-29 13:40:20 +00:00
{
- $this->assertSame(200, $client->getResponse()->getStatusCode());
+ $this->assertResponseIsSuccessful();
}
public function testUrl()
{
- $this->assertSame(301, $client->getResponse()->getStatusCode());
- $this->assertSame('https://example.com', $client->getResponse()->headers->get('Location'));
+ $this->assertResponseRedirects('https://example.com', 301);
}
public function testContains()
{
- $this->assertContains('Hello World', $crawler->filter('h1')->text());
+ $this->assertSelectorTextContains('h1', 'Hello World');
2019-05-29 13:40:20 +00:00
}
}
```
<br>
### `StringFormTypeToClassRector`
- class: `Rector\Symfony\Rector\Form\StringFormTypeToClassRector`
Turns string Form Type references to their CONSTANT alternatives in FormTypes in Form in Symfony
```diff
$formBuilder = new Symfony\Component\Form\FormBuilder;
-$formBuilder->add('name', 'form.type.text');
2019-09-06 20:08:48 +00:00
+$formBuilder->add('name', \Symfony\Component\Form\Extension\Core\Type\TextType::class);
```
<br>
### `StringToArrayArgumentProcessRector`
- class: `Rector\Symfony\Rector\New_\StringToArrayArgumentProcessRector`
Changes Process string argument to an array
```diff
use Symfony\Component\Process\Process;
-$process = new Process('ls -l');
+$process = new Process(['ls', '-l']);
```
<br>
### `VarDumperTestTraitMethodArgsRector`
- class: `Rector\Symfony\Rector\VarDumper\VarDumperTestTraitMethodArgsRector`
Adds new `$format` argument in `VarDumperTestTrait->assertDumpEquals()` in Validator in Symfony.
```diff
-$varDumperTestTrait->assertDumpEquals($dump, $data, $mesage = "");
+$varDumperTestTrait->assertDumpEquals($dump, $data, $context = null, $mesage = "");
```
```diff
-$varDumperTestTrait->assertDumpMatchesFormat($dump, $format, $mesage = "");
+$varDumperTestTrait->assertDumpMatchesFormat($dump, $format, $context = null, $mesage = "");
```
<br>
2019-08-05 21:10:47 +00:00
## SymfonyCodeQuality
### `EventListenerToEventSubscriberRector`
- class: `Rector\SymfonyCodeQuality\Rector\Class_\EventListenerToEventSubscriberRector`
Change Symfony Event listener class to Event Subscriber based on configuration in service.yaml file
```diff
<?php
-class SomeListener
+use Symfony\Component\EventDispatcher\EventSubscriberInterface;
+
+class SomeEventSubscriber implements EventSubscriberInterface
{
+ /**
+ * @return string[]
+ */
+ public static function getSubscribedEvents(): array
+ {
+ return ['some_event' => 'methodToBeCalled'];
+ }
+
public function methodToBeCalled()
{
}
-}
-
-// in config.yaml
-services:
- SomeListener:
- tags:
- - { name: kernel.event_listener, event: 'some_event', method: 'methodToBeCalled' }
+}
```
<br>
## SymfonyPHPUnit
### `MultipleServiceGetToSetUpMethodRector`
- class: `Rector\SymfonyPHPUnit\Rector\Class_\MultipleServiceGetToSetUpMethodRector`
```diff
use ItemRepository;
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
class SomeTest extends KernelTestCase
{
+ /**
+ * @var \ItemRepository
+ */
+ private $itemRepository;
+
+ protected function setUp()
+ {
+ parent::setUp();
+ $this->itemRepository = self::$container->get(ItemRepository::class);
+ }
+
public function testOne()
{
- $itemRepository = self::$container->get(ItemRepository::class);
- $itemRepository->doStuff();
+ $this->itemRepository->doStuff();
}
public function testTwo()
{
- $itemRepository = self::$container->get(ItemRepository::class);
- $itemRepository->doAnotherStuff();
+ $this->itemRepository->doAnotherStuff();
}
}
```
<br>
2018-09-28 16:33:35 +00:00
## Twig
### `SimpleFunctionAndFilterRector`
- class: `Rector\Twig\Rector\SimpleFunctionAndFilterRector`
Changes Twig_Function_Method to Twig_SimpleFunction calls in TwigExtension.
```diff
class SomeExtension extends Twig_Extension
{
public function getFunctions()
{
return [
- 'is_mobile' => new Twig_Function_Method($this, 'isMobile'),
+ new Twig_SimpleFunction('is_mobile', [$this, 'isMobile']),
];
}
2019-03-31 12:25:39 +00:00
public function getFilters()
2018-09-28 16:33:35 +00:00
{
return [
- 'is_mobile' => new Twig_Filter_Method($this, 'isMobile'),
+ new Twig_SimpleFilter('is_mobile', [$this, 'isMobile']),
];
}
}
```
<br>
2019-05-19 08:27:38 +00:00
## TypeDeclaration
2019-08-17 13:06:02 +00:00
### `AddArrayParamDocTypeRector`
- class: `Rector\TypeDeclaration\Rector\ClassMethod\AddArrayParamDocTypeRector`
Adds @param annotation to array parameters inferred from the rest of the code
```diff
class SomeClass
{
/**
* @var int[]
*/
private $values;
+ /**
+ * @param int[] $values
+ */
public function __construct(array $values)
{
$this->values = $values;
}
}
```
<br>
### `AddArrayReturnDocTypeRector`
- class: `Rector\TypeDeclaration\Rector\ClassMethod\AddArrayReturnDocTypeRector`
Adds @return annotation to array parameters inferred from the rest of the code
```diff
class SomeClass
{
/**
* @var int[]
*/
private $values;
+ /**
+ * @return int[]
+ */
public function getValues(): array
{
return $this->values;
}
}
```
<br>
### `AddClosureReturnTypeRector`
2019-05-19 08:27:38 +00:00
- class: `Rector\TypeDeclaration\Rector\Closure\AddClosureReturnTypeRector`
2019-05-19 08:27:38 +00:00
Add known return type to functions
2019-05-19 08:27:38 +00:00
```diff
class SomeClass
{
public function run($meetups)
2019-05-19 08:27:38 +00:00
{
- return array_filter($meetups, function (Meetup $meetup) {
+ return array_filter($meetups, function (Meetup $meetup): bool {
return is_object($meetup);
});
2019-05-19 08:27:38 +00:00
}
}
```
<br>
### `ParamTypeDeclarationRector`
- class: `Rector\TypeDeclaration\Rector\FunctionLike\ParamTypeDeclarationRector`
Change @param types to type declarations if not a BC-break
```diff
<?php
class ParentClass
{
/**
* @param int $number
*/
public function keep($number)
{
}
}
final class ChildClass extends ParentClass
{
/**
* @param int $number
*/
public function keep($number)
{
}
/**
* @param int $number
*/
- public function change($number)
+ public function change(int $number)
{
}
}
```
<br>
2019-08-05 21:10:47 +00:00
### `PropertyTypeDeclarationRector`
- class: `Rector\TypeDeclaration\Rector\Property\PropertyTypeDeclarationRector`
2019-09-15 18:28:10 +00:00
Add @var to properties that are missing it
2019-08-05 21:10:47 +00:00
<br>
### `ReturnTypeDeclarationRector`
2018-05-04 22:30:32 +00:00
- class: `Rector\TypeDeclaration\Rector\FunctionLike\ReturnTypeDeclarationRector`
2018-08-01 20:09:34 +00:00
Change @return types and type from static analysis to type declarations if not a BC-break
2018-05-04 22:30:32 +00:00
```diff
<?php
2019-05-29 13:40:20 +00:00
class SomeClass
{
/**
* @return int
*/
- public function getCount()
+ public function getCount(): int
2019-05-29 13:40:20 +00:00
{
}
}
```
<br>
2019-09-15 18:28:10 +00:00
## ZendToSymfony
### `ChangeZendControllerClassToSymfonyControllerClassRector`
- class: `Rector\ZendToSymfony\Rector\Class_\ChangeZendControllerClassToSymfonyControllerClassRector`
Change Zend 1 controller to Symfony 4 controller
```diff
-class SomeAction extends Zend_Controller_Action
+final class SomeAction extends \Symfony\Bundle\FrameworkBundle\Controller\AbstractController
{
}
```
<br>
### `GetParamToClassMethodParameterAndRouteRector`
- class: `Rector\ZendToSymfony\Rector\ClassMethod\GetParamToClassMethodParameterAndRouteRector`
Change $this->getParam() calls to action method arguments + Sdd symfony @Route
```diff
-public function someAction()
+public function someAction($id)
{
- $id = $this->getParam('id');
-}
+}
```
<br>
### `RedirectorToRedirectToUrlRector`
- class: `Rector\ZendToSymfony\Rector\Expression\RedirectorToRedirectToUrlRector`
Change $redirector helper to Symfony\Controller call redirect()
```diff
public function someAction()
{
$redirector = $this->_helper->redirector;
- $redirector->goToUrl('abc');
+ $this->redirect('abc');
}
```
<br>
### `RemoveAutoloadingIncludeRector`
- class: `Rector\ZendToSymfony\Rector\Include_\RemoveAutoloadingIncludeRector`
Remove include/require statements, that supply autoloading (PSR-4 composer autolaod is going to be used instead)
```diff
-include 'SomeFile.php';
-require_once 'AnotherFile.php';
-
$values = require_once 'values.txt';
```
<br>
### `ThisHelperToServiceMethodCallRector`
- class: `Rector\ZendToSymfony\Rector\MethodCall\ThisHelperToServiceMethodCallRector`
Change magic $this->_helper->calls() to constructor injection of helper services
```diff
class SomeController
{
/**
* @var Zend_Controller_Action_HelperBroker
*/
private $_helper;
+
+ /**
+ * @var Zend_Controller_Action_Helper_OnlinePayment
+ */
+ private $onlinePaymentHelper;
+ public function __construct(Zend_Controller_Action_Helper_OnlinePayment $onlinePaymentHelper)
+ {
+ $this->onlinePaymentHelper = onlinePaymentHelper;
+ }
+
public function someAction()
{
- $this->_helper->onlinePayment(1000);
-
- $this->_helper->onlinePayment()->isPaid();
+ $this->onlinePaymentHelper->direct(1000);
+
+ $this->onlinePaymentHelper->direct()->isPaid();
}
}
```
<br>
### `ThisRequestToRequestParameterRector`
- class: `Rector\ZendToSymfony\Rector\ClassMethod\ThisRequestToRequestParameterRector`
Change $this->_request in action method to $request parameter
```diff
-public function someAction()
+public function someAction(\Symfony\Component\HttpFoundation\Request $request)
{
- $isGet = $this->_request->isGet();
+ $isGet = $request->isGet();
}
```
<br>
### `ThisViewToThisRenderResponseRector`
- class: `Rector\ZendToSymfony\Rector\ClassMethod\ThisViewToThisRenderResponseRector`
Change $this->_view->assign = 5; to $this->render("...", $templateData);
```diff
public function someAction()
{
- $this->_view->value = 5;
-}
+ $templateData = [];
+ $templateData['value']; = 5;
+
+ return $this->render("...", $templateData);
+}
```
<br>
2019-05-29 13:40:20 +00:00
---
## General
- [Core](#core)
## Core
### `ActionInjectionToConstructorInjectionRector`
- class: `Rector\Rector\Architecture\DependencyInjection\ActionInjectionToConstructorInjectionRector`
Turns action injection in Controllers to constructor injection
```diff
final class SomeController
2018-08-01 20:09:34 +00:00
{
- public function default(ProductRepository $productRepository)
+ /**
+ * @var ProductRepository
+ */
+ private $productRepository;
+ public function __construct(ProductRepository $productRepository)
{
- $products = $productRepository->fetchAll();
+ $this->productRepository = $productRepository;
+ }
+
+ public function default()
+ {
+ $products = $this->productRepository->fetchAll();
}
2018-08-01 20:09:34 +00:00
}
2018-05-04 22:30:32 +00:00
```
<br>
2019-06-06 13:01:53 +00:00
### `AddMethodParentCallRector`
- class: `Rector\Rector\ClassMethod\AddMethodParentCallRector`
Add method parent call, in case new parent method is added
```diff
class SunshineCommand extends ParentClassWithNewConstructor
{
public function __construct()
{
$value = 5;
+
+ parent::__construct();
}
}
```
<br>
### `AddReturnTypeDeclarationRector`
2018-05-04 22:30:32 +00:00
- class: `Rector\Rector\ClassMethod\AddReturnTypeDeclarationRector`
2018-05-04 22:30:32 +00:00
Changes defined return typehint of method and class.
2018-08-01 20:09:34 +00:00
```yaml
services:
Rector\Rector\ClassMethod\AddReturnTypeDeclarationRector:
2019-09-15 18:28:10 +00:00
$typehintForMethodByClass:
SomeClass:
getData: array
2018-05-04 22:30:32 +00:00
```
2018-08-01 20:09:34 +00:00
2018-08-01 20:09:34 +00:00
```diff
class SomeClass
2019-05-29 13:40:20 +00:00
{
- public getData();
+ public getData(): array;
2019-05-29 13:40:20 +00:00
}
2018-08-01 20:09:34 +00:00
```
<br>
### `AnnotatedPropertyInjectToConstructorInjectionRector`
- class: `Rector\Rector\Architecture\DependencyInjection\AnnotatedPropertyInjectToConstructorInjectionRector`
Turns non-private properties with `@annotation` to private properties and constructor injection
2018-05-04 22:30:32 +00:00
```diff
/**
* @var SomeService
- * @inject
*/
-public $someService;
+private $someService;
+
+public function __construct(SomeService $someService)
+{
+ $this->someService = $someService;
+}
```
<br>
### `ArgumentAdderRector`
- class: `Rector\Rector\Argument\ArgumentAdderRector`
This Rector adds new default arguments in calls of defined methods and class types.
2018-08-01 20:09:34 +00:00
```yaml
services:
Rector\Rector\Argument\ArgumentAdderRector:
SomeExampleClass:
someMethod:
-
name: someArgument
default_value: 'true'
type: SomeType
2018-05-04 22:30:32 +00:00
```
2018-08-01 20:09:34 +00:00
2018-05-04 22:30:32 +00:00
```diff
$someObject = new SomeExampleClass;
-$someObject->someMethod();
+$someObject->someMethod(true);
2018-05-04 22:30:32 +00:00
```
2018-08-01 20:09:34 +00:00
```yaml
services:
Rector\Rector\Argument\ArgumentAdderRector:
SomeExampleClass:
someMethod:
-
name: someArgument
default_value: 'true'
type: SomeType
2018-08-01 20:09:34 +00:00
```
2018-05-04 22:30:32 +00:00
```diff
class MyCustomClass extends SomeExampleClass
2019-05-29 13:40:20 +00:00
{
- public function someMethod()
+ public function someMethod($value = true)
2019-05-29 13:40:20 +00:00
{
}
}
2018-05-04 22:30:32 +00:00
```
<br>
### `ArgumentDefaultValueReplacerRector`
2019-03-16 20:31:46 +00:00
- class: `Rector\Rector\Argument\ArgumentDefaultValueReplacerRector`
2019-03-16 20:31:46 +00:00
Replaces defined map of arguments in defined methods and their calls.
2019-03-16 20:31:46 +00:00
```yaml
services:
Rector\Rector\Argument\ArgumentDefaultValueReplacerRector:
SomeExampleClass:
someMethod:
-
-
before: 'SomeClass::OLD_CONSTANT'
after: 'false'
2019-03-16 20:31:46 +00:00
```
```diff
$someObject = new SomeClass;
-$someObject->someMethod(SomeClass::OLD_CONSTANT);
+$someObject->someMethod(false);'
2019-03-16 20:31:46 +00:00
```
<br>
### `ArgumentRemoverRector`
- class: `Rector\Rector\Argument\ArgumentRemoverRector`
2018-05-04 22:30:32 +00:00
Removes defined arguments in defined methods and their calls.
2018-08-01 20:09:34 +00:00
```yaml
services:
Rector\Rector\Argument\ArgumentRemoverRector:
ExampleClass:
someMethod:
-
value: 'true'
2018-08-01 20:09:34 +00:00
```
2018-05-04 22:30:32 +00:00
```diff
$someObject = new SomeClass;
-$someObject->someMethod(true);
+$someObject->someMethod();'
2018-05-04 22:30:32 +00:00
```
<br>
### `ChangeConstantVisibilityRector`
- class: `Rector\Rector\Visibility\ChangeConstantVisibilityRector`
Change visibility of constant from parent class.
```yaml
services:
Rector\Rector\Visibility\ChangeConstantVisibilityRector:
ParentObject:
SOME_CONSTANT: protected
```
```diff
class FrameworkClass
2018-10-23 18:58:57 +00:00
{
protected const SOME_CONSTANT = 1;
}
2018-05-04 22:30:32 +00:00
class MyClass extends FrameworkClass
{
- public const SOME_CONSTANT = 1;
+ protected const SOME_CONSTANT = 1;
2018-10-21 22:26:45 +00:00
}
2018-10-12 23:15:00 +00:00
```
<br>
### `ChangeMethodVisibilityRector`
- class: `Rector\Rector\Visibility\ChangeMethodVisibilityRector`
2018-07-31 12:50:39 +00:00
Change visibility of method from parent class.
2018-08-01 20:09:34 +00:00
```yaml
services:
Rector\Rector\Visibility\ChangeMethodVisibilityRector:
FrameworkClass:
someMethod: protected
2018-08-01 20:09:34 +00:00
```
2018-07-31 12:50:39 +00:00
```diff
class FrameworkClass
{
protected someMethod()
{
}
}
class MyClass extends FrameworkClass
{
- public someMethod()
+ protected someMethod()
{
}
}
2018-07-31 12:50:39 +00:00
```
<br>
### `ChangePropertyVisibilityRector`
- class: `Rector\Rector\Visibility\ChangePropertyVisibilityRector`
2018-07-31 12:50:39 +00:00
Change visibility of property from parent class.
2018-08-01 20:09:34 +00:00
```yaml
services:
Rector\Rector\Visibility\ChangePropertyVisibilityRector:
FrameworkClass:
someProperty: protected
2018-08-01 20:09:34 +00:00
```
2018-07-31 12:50:39 +00:00
```diff
class FrameworkClass
{
protected $someProperty;
}
class MyClass extends FrameworkClass
{
- public $someProperty;
+ protected $someProperty;
}
2018-08-01 20:09:34 +00:00
```
2019-05-29 13:40:20 +00:00
<br>
### `FluentReplaceRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\Rector\MethodBody\FluentReplaceRector`
2019-05-29 13:40:20 +00:00
Turns fluent interface calls to classic ones.
2019-05-29 13:40:20 +00:00
2018-08-01 20:09:34 +00:00
```yaml
services:
Rector\Rector\MethodBody\FluentReplaceRector:
2019-08-17 13:06:02 +00:00
$classesToDefluent:
- SomeExampleClass
2018-07-31 12:50:39 +00:00
```
2018-08-01 20:09:34 +00:00
2018-08-01 20:09:34 +00:00
```diff
$someClass = new SomeClass();
-$someClass->someFunction()
- ->otherFunction();
+$someClass->someFunction();
+$someClass->otherFunction();
2018-08-01 20:09:34 +00:00
```
<br>
### `FunctionToMethodCallRector`
- class: `Rector\Rector\Function_\FunctionToMethodCallRector`
Turns defined function calls to local method calls.
2018-08-01 20:09:34 +00:00
```yaml
services:
Rector\Rector\Function_\FunctionToMethodCallRector:
view:
- this
- render
2018-08-01 20:09:34 +00:00
```
2018-08-01 20:09:34 +00:00
2018-08-01 20:09:34 +00:00
```diff
-view("...", []);
+$this->render("...", []);
2018-08-01 20:09:34 +00:00
```
<br>
### `FunctionToNewRector`
2018-09-28 16:33:35 +00:00
- class: `Rector\Rector\FuncCall\FunctionToNewRector`
2018-09-28 16:33:35 +00:00
Change configured function calls to new Instance
2018-08-01 20:09:34 +00:00
```diff
class SomeClass
{
public function run()
{
- $array = collection([]);
+ $array = new \Collection([]);
}
2018-08-01 20:09:34 +00:00
}
2018-05-04 22:30:32 +00:00
```
<br>
2018-10-23 18:58:57 +00:00
### `FunctionToStaticCallRector`
2019-02-18 15:51:24 +00:00
- class: `Rector\Rector\Function_\FunctionToStaticCallRector`
2019-02-18 15:51:24 +00:00
Turns defined function call to static method call.
2019-02-18 15:51:24 +00:00
```yaml
services:
Rector\Rector\Function_\FunctionToStaticCallRector:
view:
- SomeStaticClass
- render
2019-02-18 15:51:24 +00:00
```
```diff
-view("...", []);
+SomeClass::render("...", []);
2019-02-18 15:51:24 +00:00
```
<br>
### `GetAndSetToMethodCallRector`
- class: `Rector\Rector\MagicDisclosure\GetAndSetToMethodCallRector`
2018-05-04 22:30:32 +00:00
Turns defined `__get`/`__set` to specific method calls.
2018-05-04 22:30:32 +00:00
2018-08-01 20:09:34 +00:00
```yaml
services:
Rector\Rector\MagicDisclosure\GetAndSetToMethodCallRector:
SomeContainer:
set: addService
2018-08-01 20:09:34 +00:00
```
2018-05-04 22:30:32 +00:00
```diff
$container = new SomeContainer;
-$container->someService = $someService;
+$container->setService("someService", $someService);
2018-05-04 22:30:32 +00:00
```
```yaml
services:
Rector\Rector\MagicDisclosure\GetAndSetToMethodCallRector:
$typeToMethodCalls:
SomeContainer:
get: getService
```
```diff
$container = new SomeContainer;
-$someService = $container->someService;
+$someService = $container->getService("someService");
```
<br>
### `InjectAnnotationClassRector`
- class: `Rector\Rector\Property\InjectAnnotationClassRector`
Changes properties with specified annotations class to constructor injection
2018-05-04 22:30:32 +00:00
2018-08-01 20:09:34 +00:00
```yaml
services:
Rector\Rector\Property\InjectAnnotationClassRector:
$annotationClasses:
2019-09-15 18:28:10 +00:00
- DI\Annotation\Inject
- JMS\DiExtraBundle\Annotation\Inject
2018-08-01 20:09:34 +00:00
```
2018-05-04 22:30:32 +00:00
2018-08-01 20:09:34 +00:00
2018-07-31 12:50:39 +00:00
2018-08-01 20:09:34 +00:00
```diff
use JMS\DiExtraBundle\Annotation as DI;
2018-05-04 22:30:32 +00:00
class SomeController
{
/**
- * @DI\Inject("entity.manager")
+ * @var EntityManager
*/
private $entityManager;
+
+ public function __construct(EntityManager $entityManager)
+ {
+ $this->entityManager = entityManager;
+ }
}
2018-05-04 22:30:32 +00:00
```
<br>
### `MergeInterfacesRector`
2018-08-01 20:09:34 +00:00
- class: `Rector\Rector\Interface_\MergeInterfacesRector`
Merges old interface to a new one, that already has its methods
2018-05-05 00:04:41 +00:00
2018-08-01 20:09:34 +00:00
```yaml
services:
Rector\Rector\Interface_\MergeInterfacesRector:
SomeOldInterface: SomeInterface
2018-08-01 20:09:34 +00:00
```
2018-05-05 00:04:41 +00:00
2018-08-01 20:09:34 +00:00
2018-08-01 20:09:34 +00:00
```diff
-class SomeClass implements SomeInterface, SomeOldInterface
+class SomeClass implements SomeInterface
{
}
2018-05-05 00:04:41 +00:00
```
<br>
2019-05-29 13:40:20 +00:00
### `MethodCallToAnotherMethodCallWithArgumentsRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\Rector\MethodCall\MethodCallToAnotherMethodCallWithArgumentsRector`
2019-08-24 11:08:59 +00:00
Turns old method call with specific types to new one with arguments
2018-05-04 22:30:32 +00:00
2018-08-01 20:09:34 +00:00
```yaml
services:
2019-05-29 13:40:20 +00:00
Rector\Rector\MethodCall\MethodCallToAnotherMethodCallWithArgumentsRector:
Nette\DI\ServiceDefinition:
setInject:
-
- addTag
-
- inject
```
```diff
2019-05-29 13:40:20 +00:00
$serviceDefinition = new Nette\DI\ServiceDefinition;
-$serviceDefinition->setInject();
+$serviceDefinition->addTag('inject');
```
2019-05-29 13:40:20 +00:00
<br>
### `MoveRepositoryFromParentToConstructorRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\Rector\Architecture\RepositoryAsService\MoveRepositoryFromParentToConstructorRector`
2019-05-29 13:40:20 +00:00
Turns parent EntityRepository class to constructor dependency
2019-05-29 13:40:20 +00:00
```yaml
services:
Rector\Rector\Architecture\RepositoryAsService\MoveRepositoryFromParentToConstructorRector:
$entityRepositoryClass: Doctrine\ORM\EntityRepository
$entityManagerClass: Doctrine\ORM\EntityManager
2018-08-01 20:09:34 +00:00
```
2018-05-04 22:30:32 +00:00
```diff
namespace App\Repository;
+use App\Entity\Post;
use Doctrine\ORM\EntityRepository;
-final class PostRepository extends EntityRepository
+final class PostRepository
{
+ /**
+ * @var \Doctrine\ORM\EntityRepository
+ */
+ private $repository;
+ public function __construct(\Doctrine\ORM\EntityManager $entityManager)
+ {
+ $this->repository = $entityManager->getRepository(\App\Entity\Post::class);
+ }
}
2018-05-04 22:30:32 +00:00
```
<br>
### `MultipleClassFileToPsr4ClassesRector`
2019-03-09 13:24:30 +00:00
- class: `Rector\Rector\Psr4\MultipleClassFileToPsr4ClassesRector`
2019-03-09 13:24:30 +00:00
Turns namespaced classes in one file to standalone PSR-4 classes.
2019-03-09 13:24:30 +00:00
```diff
+// new file: "app/Exceptions/FirstException.php"
namespace App\Exceptions;
2019-03-09 13:24:30 +00:00
use Exception;
2019-03-09 13:24:30 +00:00
final class FirstException extends Exception
{
2019-03-09 13:24:30 +00:00
}
+
+// new file: "app/Exceptions/SecondException.php"
+namespace App\Exceptions;
+
+use Exception;
final class SecondException extends Exception
{
}
```
<br>
### `NewObjectToFactoryCreateRector`
- class: `Rector\Rector\Architecture\Factory\NewObjectToFactoryCreateRector`
Replaces creating object instances with "new" keyword with factory method.
```yaml
services:
Rector\Rector\Architecture\Factory\NewObjectToFactoryCreateRector:
MyClass:
class: MyClassFactory
method: create
```
```diff
class SomeClass
2019-05-29 13:40:20 +00:00
{
+ /**
+ * @var \MyClassFactory
+ */
+ private $myClassFactory;
+
public function example() {
- new MyClass($argument);
+ $this->myClassFactory->create($argument);
}
2019-05-29 13:40:20 +00:00
}
```
<br>
### `NewToStaticCallRector`
- class: `Rector\Rector\New_\NewToStaticCallRector`
Change new Object to static call
```yaml
services:
Rector\Rector\New_\NewToStaticCallRector:
Cookie:
-
- Cookie
- create
```
```diff
class SomeClass
2019-05-29 13:40:20 +00:00
{
public function run()
{
- new Cookie($name);
+ Cookie::create($name);
}
2019-05-29 13:40:20 +00:00
}
```
<br>
### `NormalToFluentRector`
2018-05-04 22:30:32 +00:00
- class: `Rector\Rector\MethodBody\NormalToFluentRector`
2018-05-04 22:30:32 +00:00
Turns fluent interface calls to classic ones.
2018-07-31 12:50:39 +00:00
2018-08-01 20:09:34 +00:00
```yaml
services:
Rector\Rector\MethodBody\NormalToFluentRector:
SomeClass:
- someFunction
- otherFunction
2018-08-01 20:09:34 +00:00
```
2018-05-04 22:30:32 +00:00
2018-08-01 20:09:34 +00:00
```diff
$someObject = new SomeClass();
-$someObject->someFunction();
-$someObject->otherFunction();
+$someObject->someFunction()
+ ->otherFunction();
```
2019-05-29 13:40:20 +00:00
<br>
### `ParentClassToTraitsRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\Rector\Class_\ParentClassToTraitsRector`
2019-05-29 13:40:20 +00:00
Replaces parent class to specific traits
2019-05-29 13:40:20 +00:00
2018-09-28 16:33:35 +00:00
```yaml
services:
Rector\Rector\Class_\ParentClassToTraitsRector:
Nette\Object:
- Nette\SmartObject
2018-09-28 16:33:35 +00:00
```
```diff
-class SomeClass extends Nette\Object
+class SomeClass
2019-05-29 13:40:20 +00:00
{
+ use Nette\SmartObject;
2019-05-29 13:40:20 +00:00
}
2018-09-28 16:33:35 +00:00
```
<br>
### `ParentTypehintedArgumentRector`
2019-05-19 08:27:38 +00:00
- class: `Rector\Rector\Typehint\ParentTypehintedArgumentRector`
2019-05-19 08:27:38 +00:00
Changes defined parent class typehints.
```yaml
services:
Rector\Rector\Typehint\ParentTypehintedArgumentRector:
2019-09-15 18:28:10 +00:00
$typehintForArgumentByMethodAndClass:
SomeInterface:
read:
$content: string
```
2019-05-19 08:27:38 +00:00
```diff
interface SomeInterface
2019-05-19 08:27:38 +00:00
{
public read(string $content);
}
class SomeClass implements SomeInterface
{
- public read($content);
+ public read(string $content);
2019-05-19 08:27:38 +00:00
}
```
<br>
### `PropertyAssignToMethodCallRector`
- class: `Rector\Rector\Assign\PropertyAssignToMethodCallRector`
Turns property assign of specific type and property name to method call
```yaml
services:
Rector\Rector\Assign\PropertyAssignToMethodCallRector:
$oldPropertiesToNewMethodCallsByType:
SomeClass:
oldPropertyName: oldProperty
newMethodName: newMethodCall
```
```diff
-$someObject = new SomeClass;
-$someObject->oldProperty = false;
+$someObject = new SomeClass;
+$someObject->newMethodCall(false);
```
<br>
### `PropertyToMethodRector`
- class: `Rector\Rector\Property\PropertyToMethodRector`
Replaces properties assign calls be defined methods.
```yaml
services:
Rector\Rector\Property\PropertyToMethodRector:
$perClassPropertyToMethods:
SomeObject:
property:
get: getProperty
set: setProperty
```
2019-05-29 13:40:20 +00:00
```diff
-$result = $object->property;
-$object->property = $value;
+$result = $object->getProperty();
+$object->setProperty($value);
```
```yaml
services:
Rector\Rector\Property\PropertyToMethodRector:
$perClassPropertyToMethods:
SomeObject:
property:
get:
method: getConfig
arguments:
- someArg
```
```diff
-$result = $object->property;
+$result = $object->getProperty('someArg');
```
<br>
### `PseudoNamespaceToNamespaceRector`
- class: `Rector\Rector\Namespace_\PseudoNamespaceToNamespaceRector`
Replaces defined Pseudo_Namespaces by Namespace\Ones.
```yaml
services:
Rector\Rector\Namespace_\PseudoNamespaceToNamespaceRector:
-
Some_: { }
```
2019-05-29 13:40:20 +00:00
```diff
-$someService = new Some_Object;
+$someService = new Some\Object;
```
```yaml
services:
Rector\Rector\Namespace_\PseudoNamespaceToNamespaceRector:
-
Some_:
- Some_Class_To_Keep
```
```diff
-/** @var Some_Object $someService */
-$someService = new Some_Object;
+/** @var Some\Object $someService */
+$someService = new Some\Object;
$someClassToKeep = new Some_Class_To_Keep;
2019-05-29 13:40:20 +00:00
```
<br>
### `RemoveInterfacesRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\Rector\Interface_\RemoveInterfacesRector`
2019-05-29 13:40:20 +00:00
Removes interfaces usage from class.
```yaml
services:
Rector\Rector\Interface_\RemoveInterfacesRector:
- SomeInterface
```
```diff
-class SomeClass implements SomeInterface
+class SomeClass
{
}
```
<br>
### `RemoveTraitRector`
- class: `Rector\Rector\ClassLike\RemoveTraitRector`
Remove specific traits from code
```diff
class SomeClass
{
- use SomeTrait;
}
```
<br>
### `RenameAnnotationRector`
- class: `Rector\Rector\Annotation\RenameAnnotationRector`
Turns defined annotations above properties and methods to their new values.
2019-05-29 13:40:20 +00:00
```yaml
services:
Rector\Rector\Annotation\RenameAnnotationRector:
$classToAnnotationMap:
PHPUnit\Framework\TestCase:
test: scenario
2019-05-29 13:40:20 +00:00
```
```diff
class SomeTest extends PHPUnit\Framework\TestCase
{
- /**
- * @test
+ /**
+ * @scenario
*/
public function someMethod()
{
}
}
```
<br>
### `RenameClassConstantRector`
- class: `Rector\Rector\Constant\RenameClassConstantRector`
2018-05-04 22:30:32 +00:00
Replaces defined class constants in their calls.
2018-08-01 20:09:34 +00:00
```yaml
services:
Rector\Rector\Constant\RenameClassConstantRector:
SomeClass:
OLD_CONSTANT: NEW_CONSTANT
OTHER_OLD_CONSTANT: 'DifferentClass::NEW_CONSTANT'
2018-08-01 20:09:34 +00:00
```
2018-05-04 22:30:32 +00:00
```diff
-$value = SomeClass::OLD_CONSTANT;
-$value = SomeClass::OTHER_OLD_CONSTANT;
+$value = SomeClass::NEW_CONSTANT;
+$value = DifferentClass::NEW_CONSTANT;
2018-09-28 16:33:35 +00:00
```
<br>
### `RenameClassConstantsUseToStringsRector`
- class: `Rector\Rector\Constant\RenameClassConstantsUseToStringsRector`
Replaces constant by value
2019-05-29 13:40:20 +00:00
```yaml
services:
Rector\Rector\Constant\RenameClassConstantsUseToStringsRector:
Nette\Configurator:
DEVELOPMENT: development
PRODUCTION: production
2019-05-29 13:40:20 +00:00
```
```diff
-$value === Nette\Configurator::DEVELOPMENT
+$value === "development"
2019-05-29 13:40:20 +00:00
```
<br>
### `RenameClassRector`
- class: `Rector\Rector\Class_\RenameClassRector`
Replaces defined classes by new ones.
2019-05-29 13:40:20 +00:00
```yaml
services:
Rector\Rector\Class_\RenameClassRector:
$oldToNewClasses:
App\SomeOldClass: App\SomeNewClass
2019-05-29 13:40:20 +00:00
```
2019-05-29 13:40:20 +00:00
```diff
namespace App;
-use SomeOldClass;
+use SomeNewClass;
-function someFunction(SomeOldClass $someOldClass): SomeOldClass
+function someFunction(SomeNewClass $someOldClass): SomeNewClass
{
- if ($someOldClass instanceof SomeOldClass) {
- return new SomeOldClass;
+ if ($someOldClass instanceof SomeNewClass) {
+ return new SomeNewClass;
}
}
```
<br>
### `RenameFunctionRector`
- class: `Rector\Rector\Function_\RenameFunctionRector`
2018-05-04 22:30:32 +00:00
Turns defined function call new one.
2019-05-29 13:40:20 +00:00
```yaml
services:
Rector\Rector\Function_\RenameFunctionRector:
view: Laravel\Templating\render
2019-05-29 13:40:20 +00:00
```
2018-05-04 22:30:32 +00:00
```diff
-view("...", []);
+Laravel\Templating\render("...", []);
2019-05-29 13:40:20 +00:00
```
<br>
### `RenameMethodCallRector`
- class: `Rector\Rector\MethodCall\RenameMethodCallRector`
Turns method call names to new ones.
2019-05-29 13:40:20 +00:00
```yaml
services:
Rector\Rector\MethodCall\RenameMethodCallRector:
2019-05-29 13:40:20 +00:00
SomeExampleClass:
oldMethod: newMethod
2019-05-29 13:40:20 +00:00
```
```diff
$someObject = new SomeExampleClass;
-$someObject->oldMethod();
+$someObject->newMethod();
2018-05-04 22:30:32 +00:00
```
<br>
2018-10-23 18:58:57 +00:00
### `RenameMethodRector`
- class: `Rector\Rector\MethodCall\RenameMethodRector`
2018-05-04 22:30:32 +00:00
Turns method names to new ones.
2018-05-04 22:30:32 +00:00
2018-08-01 20:09:34 +00:00
```yaml
services:
Rector\Rector\MethodCall\RenameMethodRector:
2019-05-29 13:40:20 +00:00
SomeExampleClass:
oldMethod: newMethod
2018-08-01 20:09:34 +00:00
```
2018-05-04 22:30:32 +00:00
```diff
$someObject = new SomeExampleClass;
-$someObject->oldMethod();
+$someObject->newMethod();
2019-05-29 13:40:20 +00:00
```
2018-05-04 22:30:32 +00:00
2019-05-29 13:40:20 +00:00
<br>
2018-05-04 22:30:32 +00:00
### `RenameNamespaceRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\Rector\Namespace_\RenameNamespaceRector`
2019-05-29 13:40:20 +00:00
Replaces old namespace by new one.
2019-05-29 13:40:20 +00:00
```yaml
services:
Rector\Rector\Namespace_\RenameNamespaceRector:
$oldToNewNamespaces:
SomeOldNamespace: SomeNewNamespace
2019-05-29 13:40:20 +00:00
```
```diff
-$someObject = new SomeOldNamespace\SomeClass;
+$someObject = new SomeNewNamespace\SomeClass;
2019-05-29 13:40:20 +00:00
```
<br>
### `RenamePropertyRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\Rector\Property\RenamePropertyRector`
2019-05-29 13:40:20 +00:00
Replaces defined old properties by new ones.
```yaml
services:
Rector\Rector\Property\RenamePropertyRector:
$oldToNewPropertyByTypes:
SomeClass:
someOldProperty: someNewProperty
```
2019-05-29 13:40:20 +00:00
```diff
-$someObject->someOldProperty;
+$someObject->someNewProperty;
2018-07-31 12:50:39 +00:00
```
<br>
### `RenameStaticMethodRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\Rector\MethodCall\RenameStaticMethodRector`
2019-05-29 13:40:20 +00:00
Turns method names to new ones.
2019-03-16 20:31:46 +00:00
2019-05-29 13:40:20 +00:00
```yaml
services:
Rector\Rector\MethodCall\RenameStaticMethodRector:
SomeClass:
oldMethod:
- AnotherExampleClass
- newStaticMethod
2019-05-29 13:40:20 +00:00
```
2019-03-16 20:31:46 +00:00
2019-05-29 13:40:20 +00:00
2019-03-16 20:31:46 +00:00
```diff
-SomeClass::oldStaticMethod();
+AnotherExampleClass::newStaticMethod();
```
```yaml
services:
Rector\Rector\MethodCall\RenameStaticMethodRector:
$oldToNewMethodByClasses:
SomeClass:
oldMethod: newStaticMethod
```
```diff
-SomeClass::oldStaticMethod();
+SomeClass::newStaticMethod();
2019-03-16 20:31:46 +00:00
```
<br>
### `ReplaceParentRepositoryCallsByRepositoryPropertyRector`
2019-03-16 20:31:46 +00:00
- class: `Rector\Rector\Architecture\RepositoryAsService\ReplaceParentRepositoryCallsByRepositoryPropertyRector`
2019-03-16 20:31:46 +00:00
Handles method calls in child of Doctrine EntityRepository and moves them to "$this->repository" property.
2019-03-16 20:31:46 +00:00
```diff
<?php
use Doctrine\ORM\EntityRepository;
class SomeRepository extends EntityRepository
2019-03-16 20:31:46 +00:00
{
public function someMethod()
{
- return $this->findAll();
+ return $this->repository->findAll();
}
2019-03-16 20:31:46 +00:00
}
```
<br>
### `ReplaceVariableByPropertyFetchRector`
- class: `Rector\Rector\Architecture\DependencyInjection\ReplaceVariableByPropertyFetchRector`
2018-05-04 22:30:32 +00:00
Turns variable in controller action to property fetch, as follow up to action injection variable to property change.
2018-08-01 20:09:34 +00:00
```diff
final class SomeController
{
/**
* @var ProductRepository
*/
private $productRepository;
2018-08-01 20:09:34 +00:00
public function __construct(ProductRepository $productRepository)
{
$this->productRepository = $productRepository;
}
2018-05-04 22:30:32 +00:00
public function default()
{
- $products = $productRepository->fetchAll();
+ $products = $this->productRepository->fetchAll();
}
}
2018-08-01 20:09:34 +00:00
```
<br>
### `ReturnThisRemoveRector`
2018-08-01 20:09:34 +00:00
- class: `Rector\Rector\MethodBody\ReturnThisRemoveRector`
2018-08-01 20:09:34 +00:00
Removes "return $this;" from *fluent interfaces* for specified classes.
2018-08-01 20:09:34 +00:00
```yaml
services:
Rector\Rector\MethodBody\ReturnThisRemoveRector:
-
- SomeExampleClass
2018-08-01 20:09:34 +00:00
```
```diff
class SomeClass
{
public function someFunction()
{
- return $this;
}
public function otherFunction()
{
- return $this;
}
}
2018-05-04 22:30:32 +00:00
```
<br>
2019-08-05 21:10:47 +00:00
### `ServiceGetterToConstructorInjectionRector`
- class: `Rector\Rector\MethodCall\ServiceGetterToConstructorInjectionRector`
Get service call to constructor injection
```yaml
services:
Rector\Rector\MethodCall\ServiceGetterToConstructorInjectionRector:
$methodNamesByTypesToServiceTypes:
FirstService:
getAnotherService: AnotherService
```
```diff
final class SomeClass
{
/**
* @var FirstService
*/
private $firstService;
-
- public function __construct(FirstService $firstService)
- {
- $this->firstService = $firstService;
- }
-
- public function run()
- {
- $anotherService = $this->firstService->getAnotherService();
- $anotherService->run();
- }
-}
-
-class FirstService
-{
+
/**
* @var AnotherService
*/
private $anotherService;
-
- public function __construct(AnotherService $anotherService)
+
+ public function __construct(FirstService $firstService, AnotherService $anotherService)
{
+ $this->firstService = $firstService;
$this->anotherService = $anotherService;
}
- public function getAnotherService(): AnotherService
+ public function run()
{
- return $this->anotherService;
+ $anotherService = $this->anotherService;
+ $anotherService->run();
}
}
```
<br>
### `ServiceLocatorToDIRector`
2018-08-01 20:09:34 +00:00
- class: `Rector\Rector\Architecture\RepositoryAsService\ServiceLocatorToDIRector`
2018-08-01 20:09:34 +00:00
Turns "$this->getRepository()" in Symfony Controller to constructor injection and private property access.
2018-08-01 20:09:34 +00:00
```diff
class ProductController extends Controller
{
+ /**
+ * @var ProductRepository
+ */
+ private $productRepository;
+
+ public function __construct(ProductRepository $productRepository)
+ {
+ $this->productRepository = $productRepository;
+ }
+
public function someAction()
{
$entityManager = $this->getDoctrine()->getManager();
- $entityManager->getRepository('SomethingBundle:Product')->findSomething(...);
+ $this->productRepository->findSomething(...);
}
}
2018-08-01 20:09:34 +00:00
```
<br>
### `StaticCallToFunctionRector`
2018-05-04 22:30:32 +00:00
- class: `Rector\Rector\StaticCall\StaticCallToFunctionRector`
Turns static call to function call.
2018-05-04 22:30:32 +00:00
2018-08-01 20:09:34 +00:00
```yaml
services:
Rector\Rector\StaticCall\StaticCallToFunctionRector:
$staticCallToFunction:
OldClass:
oldMethod: new_function
2018-08-01 20:09:34 +00:00
```
2018-05-04 22:30:32 +00:00
```diff
-OldClass::oldMethod("args");
+new_function("args");
2018-07-31 06:38:48 +00:00
```
<br>
### `StringToClassConstantRector`
- class: `Rector\Rector\String_\StringToClassConstantRector`
2018-05-04 22:30:32 +00:00
Changes strings to specific constants
2018-05-04 22:30:32 +00:00
2018-08-01 20:09:34 +00:00
```yaml
services:
Rector\Rector\String_\StringToClassConstantRector:
compiler.post_dump:
- Yet\AnotherClass
- CONSTANT
2018-08-01 20:09:34 +00:00
```
2018-05-04 22:30:32 +00:00
```diff
final class SomeSubscriber
{
public static function getSubscribedEvents()
{
- return ['compiler.post_dump' => 'compile'];
+ return [\Yet\AnotherClass::CONSTANT => 'compile'];
}
}
2018-05-04 22:30:32 +00:00
```
<br>
### `ToStringToMethodCallRector`
- class: `Rector\Rector\MagicDisclosure\ToStringToMethodCallRector`
Turns defined code uses of "__toString()" method to specific method calls.
```yaml
services:
Rector\Rector\MagicDisclosure\ToStringToMethodCallRector:
SomeObject: getPath
```
```diff
$someValue = new SomeObject;
-$result = (string) $someValue;
-$result = $someValue->__toString();
+$result = $someValue->getPath();
+$result = $someValue->getPath();
```
<br>
2019-05-29 13:40:20 +00:00
### `UnsetAndIssetToMethodCallRector`
2019-05-29 13:40:20 +00:00
- class: `Rector\Rector\MagicDisclosure\UnsetAndIssetToMethodCallRector`
2019-05-29 13:40:20 +00:00
Turns defined `__isset`/`__unset` calls to specific method calls.
```yaml
services:
2019-05-29 13:40:20 +00:00
Rector\Rector\MagicDisclosure\UnsetAndIssetToMethodCallRector:
SomeContainer:
isset: hasService
```
```diff
2019-05-29 13:40:20 +00:00
$container = new SomeContainer;
-isset($container["someKey"]);
+$container->hasService("someKey");
```
```yaml
services:
2019-05-29 13:40:20 +00:00
Rector\Rector\MagicDisclosure\UnsetAndIssetToMethodCallRector:
SomeContainer:
unset: removeService
```
```diff
2019-05-29 13:40:20 +00:00
$container = new SomeContainer;
-unset($container["someKey"]);
+$container->removeService("someKey");
```
<br>
### `WrapReturnRector`
- class: `Rector\Rector\ClassMethod\WrapReturnRector`
Wrap return value of specific method
```yaml
services:
Rector\Rector\ClassMethod\WrapReturnRector:
SomeClass:
getItem: array
```
```diff
final class SomeClass
{
public function getItem()
{
- return 1;
+ return [1];
}
}
```
<br>