psr_autoloading,self_accessor.test 343 B

1234567891011121314151617181920212223
  1. --TEST--
  2. Integration of fixers: psr_autoloading,self_accessor.
  3. --RULESET--
  4. {"psr_autoloading": true, "self_accessor": true}
  5. --EXPECT--
  6. <?php
  7. class MyClass
  8. {
  9. public static function create()
  10. {
  11. return new self();
  12. }
  13. }
  14. --INPUT--
  15. <?php
  16. class Foo
  17. {
  18. public static function create()
  19. {
  20. return new MyClass();
  21. }
  22. }