Skip to content

Instantly share code, notes, and snippets.

@TheOpenDevProject
Created May 29, 2018 04:39
Show Gist options
  • Save TheOpenDevProject/4c46325011130254d699d1db5249c7ca to your computer and use it in GitHub Desktop.
Save TheOpenDevProject/4c46325011130254d699d1db5249c7ca to your computer and use it in GitHub Desktop.
<?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