Created
July 3, 2019 11:35
-
-
Save vahid-almasi/6f31e2470c5374e5b7b49a1f0811fece to your computer and use it in GitHub Desktop.
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
<?php | |
class BasicInspection | |
{ | |
public function getCost() | |
{ | |
return 19; | |
} | |
} | |
echo (new BasicInspection())->getCost(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment