first commit
This commit is contained in:
28
vendor/phpunit/phpunit-mock-objects/tests/_fixture/SingletonClass.php
vendored
Normal file
28
vendor/phpunit/phpunit-mock-objects/tests/_fixture/SingletonClass.php
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
<?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()
|
||||
{
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user