Skip to content

Instantly share code, notes, and snippets.

@vahid-almasi
Created July 3, 2019 11:35
Show Gist options
  • Save vahid-almasi/6f31e2470c5374e5b7b49a1f0811fece to your computer and use it in GitHub Desktop.
Save vahid-almasi/6f31e2470c5374e5b7b49a1f0811fece to your computer and use it in GitHub Desktop.
<?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