├── .eslintrc.yml ├── .github └── FUNDING.yml ├── COPYING ├── LICENSE ├── LICENSE-atom-autocomplete-php ├── keymaps └── php-ide-serenata.cson ├── lib ├── AtomConfig.js ├── CancellablePromise.js ├── CodeLensManager.js ├── Config.js ├── ConfigTester.js ├── Main.js ├── PhpInvoker.js ├── ProjectManager.js ├── Proxy.js ├── Refactoring │ ├── AbstractProvider.js │ ├── ConstructorGenerationProvider.js │ ├── ConstructorGenerationProvider │ │ └── View.js │ ├── DocblockProvider.js │ ├── ExtractMethodProvider.js │ ├── ExtractMethodProvider │ │ ├── Builder.js │ │ ├── ParameterParser.js │ │ └── View.js │ ├── GetterSetterProvider.js │ ├── GetterSetterProvider │ │ └── View.js │ ├── IntroducePropertyProvider.js │ ├── OverrideMethodProvider.js │ ├── OverrideMethodProvider │ │ └── View.js │ ├── StubAbstractMethodProvider.js │ ├── StubAbstractMethodProvider │ │ └── View.js │ ├── StubInterfaceMethodProvider.js │ ├── StubInterfaceMethodProvider │ │ └── View.js │ └── Utility │ │ ├── DocblockBuilder.js │ │ ├── FunctionBuilder.js │ │ ├── MultiSelectionView.js │ │ └── TypeHelper.js ├── SerenataClient.js ├── ServerManager.js ├── ServiceContainer.js └── UseStatementHelper.js ├── menus └── menu.cson ├── package.json └── styles └── main.less /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-atom-autocomplete-php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/LICENSE-atom-autocomplete-php -------------------------------------------------------------------------------- /keymaps/php-ide-serenata.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/keymaps/php-ide-serenata.cson -------------------------------------------------------------------------------- /lib/AtomConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/lib/AtomConfig.js -------------------------------------------------------------------------------- /lib/CancellablePromise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/lib/CancellablePromise.js -------------------------------------------------------------------------------- /lib/CodeLensManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/lib/CodeLensManager.js -------------------------------------------------------------------------------- /lib/Config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/lib/Config.js -------------------------------------------------------------------------------- /lib/ConfigTester.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/lib/ConfigTester.js -------------------------------------------------------------------------------- /lib/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/lib/Main.js -------------------------------------------------------------------------------- /lib/PhpInvoker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/lib/PhpInvoker.js -------------------------------------------------------------------------------- /lib/ProjectManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/lib/ProjectManager.js -------------------------------------------------------------------------------- /lib/Proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/lib/Proxy.js -------------------------------------------------------------------------------- /lib/Refactoring/AbstractProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/lib/Refactoring/AbstractProvider.js -------------------------------------------------------------------------------- /lib/Refactoring/ConstructorGenerationProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/lib/Refactoring/ConstructorGenerationProvider.js -------------------------------------------------------------------------------- /lib/Refactoring/ConstructorGenerationProvider/View.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/lib/Refactoring/ConstructorGenerationProvider/View.js -------------------------------------------------------------------------------- /lib/Refactoring/DocblockProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/lib/Refactoring/DocblockProvider.js -------------------------------------------------------------------------------- /lib/Refactoring/ExtractMethodProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/lib/Refactoring/ExtractMethodProvider.js -------------------------------------------------------------------------------- /lib/Refactoring/ExtractMethodProvider/Builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/lib/Refactoring/ExtractMethodProvider/Builder.js -------------------------------------------------------------------------------- /lib/Refactoring/ExtractMethodProvider/ParameterParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/lib/Refactoring/ExtractMethodProvider/ParameterParser.js -------------------------------------------------------------------------------- /lib/Refactoring/ExtractMethodProvider/View.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/lib/Refactoring/ExtractMethodProvider/View.js -------------------------------------------------------------------------------- /lib/Refactoring/GetterSetterProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/lib/Refactoring/GetterSetterProvider.js -------------------------------------------------------------------------------- /lib/Refactoring/GetterSetterProvider/View.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/lib/Refactoring/GetterSetterProvider/View.js -------------------------------------------------------------------------------- /lib/Refactoring/IntroducePropertyProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/lib/Refactoring/IntroducePropertyProvider.js -------------------------------------------------------------------------------- /lib/Refactoring/OverrideMethodProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/lib/Refactoring/OverrideMethodProvider.js -------------------------------------------------------------------------------- /lib/Refactoring/OverrideMethodProvider/View.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/lib/Refactoring/OverrideMethodProvider/View.js -------------------------------------------------------------------------------- /lib/Refactoring/StubAbstractMethodProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/lib/Refactoring/StubAbstractMethodProvider.js -------------------------------------------------------------------------------- /lib/Refactoring/StubAbstractMethodProvider/View.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/lib/Refactoring/StubAbstractMethodProvider/View.js -------------------------------------------------------------------------------- /lib/Refactoring/StubInterfaceMethodProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/lib/Refactoring/StubInterfaceMethodProvider.js -------------------------------------------------------------------------------- /lib/Refactoring/StubInterfaceMethodProvider/View.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/lib/Refactoring/StubInterfaceMethodProvider/View.js -------------------------------------------------------------------------------- /lib/Refactoring/Utility/DocblockBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/lib/Refactoring/Utility/DocblockBuilder.js -------------------------------------------------------------------------------- /lib/Refactoring/Utility/FunctionBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/lib/Refactoring/Utility/FunctionBuilder.js -------------------------------------------------------------------------------- /lib/Refactoring/Utility/MultiSelectionView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/lib/Refactoring/Utility/MultiSelectionView.js -------------------------------------------------------------------------------- /lib/Refactoring/Utility/TypeHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/lib/Refactoring/Utility/TypeHelper.js -------------------------------------------------------------------------------- /lib/SerenataClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/lib/SerenataClient.js -------------------------------------------------------------------------------- /lib/ServerManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/lib/ServerManager.js -------------------------------------------------------------------------------- /lib/ServiceContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/lib/ServiceContainer.js -------------------------------------------------------------------------------- /lib/UseStatementHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/lib/UseStatementHelper.js -------------------------------------------------------------------------------- /menus/menu.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/menus/menu.cson -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/package.json -------------------------------------------------------------------------------- /styles/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gert-dev/php-ide-serenata/HEAD/styles/main.less --------------------------------------------------------------------------------