Tibor Kotosz

Results 12 issues of Tibor Kotosz

### Description (*) When an admin user is updated through the Magento admin then the `reload_acl_flag` is set to 1. Because of this during the next login of this admin...

Progress: pending review

When I execute the `import_class` command while the cursor is right before the class name (e.g. `__construct(MyClass $myClass)`) then it tries to find the classes named `(` and fails. This...

Possible sub-commands of `transform` at the moment: - complete_constructor - add_missing_properties - fix_namespace_class_name - implement_contracts I think it would be good to convert these "sub-command" to "first-class" commands because: -...

Currently if `extract_expression` executed while nothing is selected (offset start = offset end) then it potentially breaks the code. (well surprisingly sometimes it figures out what to do anyway -...

Most of the RPC commands take the following arguments: - `path`: The current file path - `source`: The current file source - `offset`: The current cursor position as byte offset...

Currently it seems a `language` parameter need to be passed over to some commands to make it work with non-php files (e.g. gherkin feature files) otherwise phpactor seem to default...

It seems some commands like `goto_definition` has a language parameter which need to be provided otherwise it defaults to php. For example this is needed for the [behat-extension](https://github.com/phpactor/behat-extension) otherwise it...

After executing `transform: complete constructor` command the result looks like this: ![image](https://user-images.githubusercontent.com/4903365/80941006-967aa700-8de1-11ea-928e-9eedc91dc07c.png) It is missing a new line between the first and second property. (Note: I am using a custom...

When running `transform:add_missing_properties` the properties are added but the generated docblock always refers the short name of the class and it is ignoring the aliases. E.g.: after add missing properties:...

In the documentation `Class Expand` mentioned as a feature but actually this command does exists. (RPC documentation is correctly not mentioning it) I have checked the VIM plugin to see...