Files
nhgooi.nl/website/vendor/phpspec/prophecy/fixtures/SpecialMethods.php
2020-01-06 02:36:10 +01:00

37 lines
368 B
PHP

<?php
namespace Fixtures\Prophecy;
class SpecialMethods
{
public function __construct()
{
}
function __destruct()
{
}
function __call($name, $arguments)
{
}
function __sleep()
{
}
function __wakeup()
{
}
function __toString()
{
return '';
}
function __invoke()
{
}
}