Skip to content
This repository was archived by the owner on Jul 12, 2020. It is now read-only.

php7 support #73

Open
wants to merge 29 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
1c0b15c
Add support for renaming local variables inside functions
K-Phoen May 14, 2016
2aaabe1
Add a test for the local variable renaming inside functions
K-Phoen May 14, 2016
746d697
Fix undeclared variable usage
K-Phoen May 14, 2016
9306801
Allow to rename function and method arguments
K-Phoen May 14, 2016
b595ed0
Update vendors
K-Phoen May 14, 2016
867b96e
Use nikic/PHP-Parser ~2.0
K-Phoen May 14, 2016
3f4e7a8
Fix case in method call
K-Phoen May 14, 2016
ffb4867
Prefer single quotes when possible
K-Phoen May 14, 2016
d318e46
Remove useless semicolons
K-Phoen May 14, 2016
1a1f91e
Use short syntax for bits operation
K-Phoen May 14, 2016
ceee74a
Use assertCount in tests when possible
K-Phoen May 14, 2016
d89aef8
Update tests
K-Phoen May 14, 2016
33d81cf
Remove unused variables
K-Phoen May 14, 2016
8d94437
Remove unused imports
K-Phoen May 14, 2016
522a953
Remove unused attribute
K-Phoen May 14, 2016
c41c0b1
Fix undeclared variable usage
K-Phoen May 14, 2016
67cab17
Update travis-ci config
K-Phoen May 14, 2016
7e07066
PHP 7.0 should not be allowed to fail
K-Phoen May 14, 2016
eca98ae
Also test against HHVM
K-Phoen May 14, 2016
5696332
Disallow failures for HHVM
K-Phoen May 14, 2016
acc316f
Add rename property command
K-Phoen May 15, 2016
ae172a7
Add a few behat tests
K-Phoen May 15, 2016
286a0f1
Talk about the "Rename Class Property" refactor
K-Phoen May 16, 2016
e750c69
Switch to POPSuL fork of php-token-reflection
AJenbo Jun 4, 2017
8d49db4
Don't throw a fit when file doesn't contain a class
AJenbo Jun 4, 2017
ff01104
Switch to my branch of PHP-Token-Reflection
AJenbo Jun 4, 2017
bdc51b3
Hanvle nested array keys
AJenbo Jul 2, 2017
8c86834
Update README.md
AJenbo Jul 4, 2017
774b51e
Require php 5.5
AJenbo Jul 4, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove useless semicolons
  • Loading branch information
K-Phoen committed May 14, 2016
commit d318e46af20201bb3813362e66a72de29317c08c
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ function and generates the argument list and return statement accordingly.
Will extract lines <info>10-16</info> from <info>file.php</info> into a new method called <info>newMethodName</info>.
HELP
);
;
}

protected function execute(InputInterface $input, OutputInterface $output)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ protected function configure()
Will optimize the use statements in <info>file.php</info>.
HELP
);
;
}

protected function execute(InputInterface $input, OutputInterface $output)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ protected function configure()

HELP
);
;
}

protected function execute(InputInterface $input, OutputInterface $output)
Expand Down