You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
333 B
29 lines
333 B
4 years ago
|
<?php
|
||
|
|
||
|
class SingletonClass
|
||
|
{
|
||
|
public static function getInstance()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public function doSomething()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
protected function __construct()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
final private function __sleep()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
final private function __wakeup()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
final private function __clone()
|
||
|
{
|
||
|
}
|
||
|
}
|