-
-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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()
- Loading branch information
Showing
5 changed files
with
13 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters