Created
May 29, 2018 04:39
-
-
Save TheOpenDevProject/4c46325011130254d699d1db5249c7ca 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 | |
/* | |
* Your external libraries wouild go here | |
*/ | |
namespace SapiaTek\SapiaCMS; | |
use Illuminate\Support\ServiceProvider; | |
class MyClass extends AnotherClass{ | |
public $memberVar = 1; | |
public function __constructor(){ | |
} | |
getMemberVar(): int{ | |
return $this->memberVar; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment