Created
March 9, 2020 20:02
-
-
Save omarkdev/bcd86e0c0065efc12ee659fb829bb155 to your computer and use it in GitHub Desktop.
Revisions
-
omarkdev created this gist
Mar 9, 2020 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ <?php class UserRepository { } class UserController { private $userRepository; public function __construct(UserRepository $repository) { $this->userRepository = $repository; } }