You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
minor #3994 [Console] Fix Console component $app to $this and use of getHelper() method (eko)
This PR was merged into the 2.5 branch.
Discussion
----------
[Console] Fix Console component $app to $this and use of getHelper() method
| Q | A |
| ---------------- |:---------:|
| Doc fix? | Yes |
| New docs? | No |
| Applies to | 2.5 |
| Fixed tickets | No |
On Console component, I've fixed the following:
### Use of getHelper() method
```php
$this->getHelperSet()->get('dialog');
```
to:
```php
$this->getHelper('dialog');
```
### Also fixed unusued $app variable to $this
This is related to original PR #3952
Commits
-------
1f4dc76 [Console] Fix Console some $app to $this and getHelperSet()->get() to getHelper()
0 commit comments