Pressroom template verwijderd, website naar root van repo
This commit is contained in:
7
vendor/phpspec/prophecy/fixtures/EmptyClass.php
vendored
Normal file
7
vendor/phpspec/prophecy/fixtures/EmptyClass.php
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
namespace Fixtures\Prophecy;
|
||||
|
||||
class EmptyClass
|
||||
{
|
||||
}
|
||||
7
vendor/phpspec/prophecy/fixtures/EmptyInterface.php
vendored
Normal file
7
vendor/phpspec/prophecy/fixtures/EmptyInterface.php
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
namespace Fixtures\Prophecy;
|
||||
|
||||
interface EmptyInterface
|
||||
{
|
||||
}
|
||||
7
vendor/phpspec/prophecy/fixtures/FinalClass.php
vendored
Normal file
7
vendor/phpspec/prophecy/fixtures/FinalClass.php
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
namespace Fixtures\Prophecy;
|
||||
|
||||
final class FinalClass
|
||||
{
|
||||
}
|
||||
10
vendor/phpspec/prophecy/fixtures/ModifierInterface.php
vendored
Normal file
10
vendor/phpspec/prophecy/fixtures/ModifierInterface.php
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace Fixtures\Prophecy;
|
||||
|
||||
interface ModifierInterface
|
||||
{
|
||||
public function isAbstract();
|
||||
|
||||
public function getVisibility();
|
||||
}
|
||||
8
vendor/phpspec/prophecy/fixtures/Named.php
vendored
Normal file
8
vendor/phpspec/prophecy/fixtures/Named.php
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace Fixtures\Prophecy;
|
||||
|
||||
interface Named
|
||||
{
|
||||
public function getName();
|
||||
}
|
||||
16
vendor/phpspec/prophecy/fixtures/OptionalDepsClass.php
vendored
Normal file
16
vendor/phpspec/prophecy/fixtures/OptionalDepsClass.php
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
namespace Fixtures\Prophecy;
|
||||
|
||||
use I\Simply;
|
||||
|
||||
class OptionalDepsClass
|
||||
{
|
||||
public function iHaveAStrangeTypeHintedArg(\I\Simply\Am\Nonexistent $class)
|
||||
{
|
||||
}
|
||||
|
||||
public function iHaveAnEvenStrangerTypeHintedArg(Simply\Am\Not $class)
|
||||
{
|
||||
}
|
||||
}
|
||||
36
vendor/phpspec/prophecy/fixtures/SpecialMethods.php
vendored
Normal file
36
vendor/phpspec/prophecy/fixtures/SpecialMethods.php
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
namespace Fixtures\Prophecy;
|
||||
|
||||
class SpecialMethods
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
}
|
||||
|
||||
function __destruct()
|
||||
{
|
||||
}
|
||||
|
||||
function __call($name, $arguments)
|
||||
{
|
||||
}
|
||||
|
||||
function __sleep()
|
||||
{
|
||||
}
|
||||
|
||||
function __wakeup()
|
||||
{
|
||||
}
|
||||
|
||||
function __toString()
|
||||
{
|
||||
return '';
|
||||
}
|
||||
|
||||
function __invoke()
|
||||
{
|
||||
}
|
||||
|
||||
}
|
||||
14
vendor/phpspec/prophecy/fixtures/WithArguments.php
vendored
Normal file
14
vendor/phpspec/prophecy/fixtures/WithArguments.php
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
namespace Fixtures\Prophecy;
|
||||
|
||||
class WithArguments
|
||||
{
|
||||
public function methodWithArgs(array $arg_1 = array(), \ArrayAccess $arg_2, \ArrayAccess $arg_3 = null)
|
||||
{
|
||||
}
|
||||
|
||||
public function methodWithoutTypeHints($arg)
|
||||
{
|
||||
}
|
||||
}
|
||||
10
vendor/phpspec/prophecy/fixtures/WithCallableArgument.php
vendored
Normal file
10
vendor/phpspec/prophecy/fixtures/WithCallableArgument.php
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace Fixtures\Prophecy;
|
||||
|
||||
class WithCallableArgument
|
||||
{
|
||||
public function methodWithArgs(callable $arg_1, callable $arg_2 = null)
|
||||
{
|
||||
}
|
||||
}
|
||||
10
vendor/phpspec/prophecy/fixtures/WithFinalMethod.php
vendored
Normal file
10
vendor/phpspec/prophecy/fixtures/WithFinalMethod.php
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace Fixtures\Prophecy;
|
||||
|
||||
class WithFinalMethod
|
||||
{
|
||||
final public function finalImplementation()
|
||||
{
|
||||
}
|
||||
}
|
||||
15
vendor/phpspec/prophecy/fixtures/WithFinalVirtuallyPrivateMethod.php
vendored
Normal file
15
vendor/phpspec/prophecy/fixtures/WithFinalVirtuallyPrivateMethod.php
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace Fixtures\Prophecy;
|
||||
|
||||
class WithFinalVirtuallyPrivateMethod
|
||||
{
|
||||
final public function __toString()
|
||||
{
|
||||
return '';
|
||||
}
|
||||
|
||||
final public function _getName()
|
||||
{
|
||||
}
|
||||
}
|
||||
8
vendor/phpspec/prophecy/fixtures/WithProtectedAbstractMethod.php
vendored
Normal file
8
vendor/phpspec/prophecy/fixtures/WithProtectedAbstractMethod.php
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace Fixtures\Prophecy;
|
||||
|
||||
abstract class WithProtectedAbstractMethod
|
||||
{
|
||||
abstract protected function innerDetail();
|
||||
}
|
||||
10
vendor/phpspec/prophecy/fixtures/WithReferences.php
vendored
Normal file
10
vendor/phpspec/prophecy/fixtures/WithReferences.php
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace Fixtures\Prophecy;
|
||||
|
||||
class WithReferences
|
||||
{
|
||||
public function methodWithReferenceArgument(&$arg_1, \ArrayAccess &$arg_2)
|
||||
{
|
||||
}
|
||||
}
|
||||
18
vendor/phpspec/prophecy/fixtures/WithReturnTypehints.php
vendored
Normal file
18
vendor/phpspec/prophecy/fixtures/WithReturnTypehints.php
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
namespace Fixtures\Prophecy;
|
||||
|
||||
class WithReturnTypehints extends EmptyClass
|
||||
{
|
||||
public function getSelf(): self {
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getName(): string {
|
||||
return __CLASS__;
|
||||
}
|
||||
|
||||
public function getParent(): parent {
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
10
vendor/phpspec/prophecy/fixtures/WithStaticMethod.php
vendored
Normal file
10
vendor/phpspec/prophecy/fixtures/WithStaticMethod.php
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace Fixtures\Prophecy;
|
||||
|
||||
class WithStaticMethod
|
||||
{
|
||||
public static function innerDetail()
|
||||
{
|
||||
}
|
||||
}
|
||||
10
vendor/phpspec/prophecy/fixtures/WithTypehintedVariadicArgument.php
vendored
Normal file
10
vendor/phpspec/prophecy/fixtures/WithTypehintedVariadicArgument.php
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace Fixtures\Prophecy;
|
||||
|
||||
class WithTypehintedVariadicArgument
|
||||
{
|
||||
function methodWithTypeHintedArgs(array ...$args)
|
||||
{
|
||||
}
|
||||
}
|
||||
10
vendor/phpspec/prophecy/fixtures/WithVariadicArgument.php
vendored
Normal file
10
vendor/phpspec/prophecy/fixtures/WithVariadicArgument.php
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace Fixtures\Prophecy;
|
||||
|
||||
class WithVariadicArgument
|
||||
{
|
||||
function methodWithArgs(...$args)
|
||||
{
|
||||
}
|
||||
}
|
||||
19
vendor/phpspec/prophecy/fixtures/WithVirtuallyPrivateMethod.php
vendored
Normal file
19
vendor/phpspec/prophecy/fixtures/WithVirtuallyPrivateMethod.php
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace Fixtures\Prophecy;
|
||||
|
||||
class WithVirtuallyPrivateMethod
|
||||
{
|
||||
public function __toString()
|
||||
{
|
||||
return '';
|
||||
}
|
||||
|
||||
public function _getName()
|
||||
{
|
||||
}
|
||||
|
||||
public function isAbstract()
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user