Created
September 3, 2019 12:06
-
-
Save pusachev/8f6db62a7b9828b1eba72485bccb6ebd to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| <?php | |
| namespace Vendor\Module; | |
| class A | |
| { | |
| /** | |
| * @var \Foo\Bazz | |
| */ | |
| private $bazz; | |
| /** | |
| * A constructor. | |
| * @param \Foo\Bazz $bazz | |
| */ | |
| public function __construct(\Foo\Bazz $bazz) | |
| { | |
| $this->bazz = $bazz | |
| } | |
| /** | |
| * @return \Foo\Bazz | |
| */ | |
| public function getBazz() | |
| { | |
| return $this->bazz; | |
| } | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment