mirror of
https://github.com/rectorphp/rector.git
synced 2025-05-05 23:45:55 +02:00
14 lines
480 B
PHP
14 lines
480 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', MethodName::CLONE, MethodName::CONSTRUCT, '__debugInfo', MethodName::DESCTRUCT, '__get', MethodName::INVOKE, '__isset', '__serialize', '__set', MethodName::SET_STATE, '__sleep', '__toString', '__unserialize', '__unset', '__wakeup'];
|
|
}
|