rector/rules/CodingStyle/ValueObject/ObjectMagicMethods.php
Tomas Votruba 5dadc46e95 Updated Rector to commit c0e95a02334240be0055efd4105afcffa738ce88
c0e95a0233 Unrelated cherry picks from PHPStan 1.0 upgrade (#1057)
2021-10-25 14:24:14 +00:00

14 lines
605 B
PHP

<?php
declare (strict_types=1);
namespace Rector\CodingStyle\ValueObject;
use Rector\Core\ValueObject\MethodName;
final class ObjectMagicMethods
{
/**
* @var string[]
*/
public const METHOD_NAMES = ['__call', '__callStatic', \Rector\Core\ValueObject\MethodName::CLONE, \Rector\Core\ValueObject\MethodName::CONSTRUCT, '__debugInfo', \Rector\Core\ValueObject\MethodName::DESCTRUCT, '__get', \Rector\Core\ValueObject\MethodName::INVOKE, '__isset', '__serialize', '__set', \Rector\Core\ValueObject\MethodName::SET_STATE, '__sleep', '__toString', '__unserialize', '__unset', '__wakeup'];
}