Home
last modified time | relevance | path

Searched refs:class (Results 1751 – 1775 of 2173) sorted by last modified time

1...<<71727374757677787980>>...87

/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/MockObject/Generator/
H A Dnonexistent_class_with_namespace.phpt22 class Foo
30 class MockFoo extends NS\Foo implements PHPUnit_Framework_MockObject_MockObject
H A Dreturn_type_declarations_self.phpt29 class MockFoo implements PHPUnit_Framework_MockObject_MockObject, Foo
H A D232.phpt31 class Foo
56 class MockFoo extends Foo implements PHPUnit_Framework_MockObject_MockObject
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/MockObject/
H A Dclass_with_deprecated_method.phpt5 class ClassWithDeprecatedMethod
31 class MockFoo extends ClassWithDeprecatedMethod implements PHPUnit_Framework_MockObject_MockObject
/plugin/findologicxmlexport/vendor/phpdocumentor/type-resolver/
H A DREADME.md9 properties and class constants but also functions and global constants.
13 1. Returning a series of Value Object for given expression while resolving any partial class names,…
42 - an object or interface such as the TypeResolver class (`@var TypeResolver`
45 …> please note that if you want to pass partial class names that additional steps are necessary, se…
61 In order to resolve a type you will have to instantiate the class `\phpDocumentor\Reflection\TypeRe…
73 … of this resolver is in its capability to expand partial class names into fully qualified class na…
80 the `\phpDocumentor\Reflection\FqsenResolver` class' `resolve` method, like this:
96 …ure of this library is that it knows how to resolve partial class names into fully qualified class
106 class Classy
153 class as second argument and the Resolvers will take this into account when resolving partial names.
[all …]
/plugin/findologicxmlexport/vendor/phpspec/prophecy/
H A DCHANGES.md9 * [fixed] Doubling methods where class has additional arguments to interface (@webimpress)
11 * [fixed] Doubling magic methods on parent class (@dsnopek)
62 …pport for detecting @method on interfaces that the class itself implements, or when the stubbed cl…
135 * Added support for doubling magic methods documented in the class phpdoc (thanks @armetiz)
155 * Changed the generated class names to use a static counter instead of a random number
171 * Better randomness for generated class names (thanks @sstok)
173 * Add support for old-style (method name === class name) constructors (thanks @l310 for report)
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/
H A DCachedDoubler.php39 protected function createDoubleClass(ReflectionClass $class = null, array $interfaces) argument
41 $classId = $this->generateClassId($class, $interfaces);
46 return $this->classes[$classId] = parent::createDoubleClass($class, $interfaces);
50 * @param ReflectionClass $class
55 private function generateClassId(ReflectionClass $class = null, array $interfaces) argument
58 if (null !== $class) {
59 $parts[] = $class->getName();
H A DLazyDouble.php28 private $class; variable in Prophecy\\Doubler\\LazyDouble
46 * @param string|ReflectionClass $class
51 public function setParentClass($class) argument
57 if (!$class instanceof ReflectionClass) {
58 if (!class_exists($class)) {
59 throw new ClassNotFoundException(sprintf('Class %s not found.', $class), $class);
62 $class = new ReflectionClass($class);
65 $this->class = $class;
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/
H A DClassCreator.php46 public function create($classname, Node\ClassNode $class) argument
48 $code = $this->generator->generate($classname, $class);
52 if (count($class->getInterfaces())) {
55 $class->getParentClass(), implode(', ', $class->getInterfaces())
56 ), $class);
60 sprintf('Could not double `%s`.', $class->getParentClass()),
61 $class
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/
H A DChangeLog-2.2.md16 …de-coverage/issues/370): Confusing statistics for source file that declares a class without methods
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/
H A DCrap4j.php81 foreach ($classes as $className => $class) {
82 foreach ($class['methods'] as $methodName => $method) {
95 if (!empty($class['package']['namespace'])) {
96 $namespace = $class['package']['namespace'];
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/
H A DTest.php299 $class = $matches[1];
333 … 'class' => $class, 'code' => $code, 'message' => $message, 'message_regex' => $messageRegExp
533 $class = new ReflectionClass($className);
534 self::$annotationCache[$className] = self::parseAnnotations($class->getDocComment());
740 $class = new ReflectionClass($className);
744 $class->isSubclassOf('PHPUnit_Extensions_Database_TestCase'))) {
838 $class = new ReflectionClass($className);
840 foreach ($class->getMethods() as $method) {
944 $class = new ReflectionClass($className);
945 $methods = $class->getMethods();
H A DXML.php224 $class = new ReflectionClass($className);
225 $variable = $class->newInstanceArgs($constructorArgs);
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/TestDox/ResultPrinter/
H A DXML.php209 $class = new ReflectionClass($test);
210 $file = $class->getFileName();
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/TestDox/
H A DResultPrinter.php244 $class = get_class($test);
246 if ($this->testClass != $class) {
251 $classAnnotations = PHPUnit_Util_Test::parseTestMethodAnnotations($class);
255 $this->currentTestClassPrettified = $this->prettifier->prettifyTestClass($class);
258 $this->startClass($class);
260 $this->testClass = $class;
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Regression/Trac/
H A D684.phpt2 #684: Unable to find test class when no test methods exists
22 No tests found in class "Foo_Bar_Issue684Test".
/plugin/findologicxmlexport/vendor/sebastian/global-state/src/
H A DRestorer.php88 $class = new \ReflectionClass($className);
89 $defaults = $class->getDefaultProperties();
91 foreach ($class->getProperties() as $attribute) {
/plugin/findologicxmlexport/vendor/sebastian/global-state/tests/
H A DSnapshotTest.php24 $blacklist->method('isStaticAttributeBlacklisted')->willReturnCallback(function ($class) {
25 return $class !== 'SebastianBergmann\GlobalState\TestFixture\SnapshotClass';
/plugin/findologicxmlexport/vendor/symfony/yaml/
H A DCHANGELOG.md29 * the constructor arguments of the `Parser` class have been removed
30 * the `Inline` class is internal and no longer part of the BC promise
171 class: "Foo\Var"
177 class: "Foo\\Var"
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/Fixtures/
H A DYtsSpecificationExamples.yml622 raise YAML::Error, "Invalid graph of class #{ val.class }: " + val.inspect
631 raise YAML::Error, "Invalid graph of class #{ val.class }: " + val.inspect
/plugin/findologicxmlexport/vendor/twig/twig/
H A DCHANGELOG19 * fixed class aliases
59 * fixed GlobalsInterface extended class
191 * fixed regression when registering two extensions having the same class name
258 * deprecated unused Twig_Node_Expression_ExtensionReference class
277 * fixed template class name generation to prevent possible collisions
369 * fixed 2-words test names when a custom node class is not used
540 * fixed wrong parent class for Twig_Function_Node
687 * added Twig_Filter_Node to allow more complex filters to have their own Node class
688 * added Twig_Test_Node to allow more complex tests to have their own Node class
1003 Twig_Loader base class has been removed, and the Twig_LoaderInterface has also
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dadvanced.rst139 // or a class static method
143 // or a class method
465 Now, let's see the actual code of this class::
522 The ``Project_Set_Node`` class itself is rather simple::
524 class Project_Set_Node extends \Twig\Node\Node
590 An extension is a class that implements the following interface::
766 ``Project_Set_TokenParser`` class. The ``Project_Set_TokenParser`` class is
860 public function load($class)
865 if ('Project_Twig_RuntimeExtension' === $class) {
866 return new $class(new Rot13Provider());
[all …]
H A Dapi.rst11 Twig uses a central object called the **environment** (of class
12 ``\Twig\Environment``). Instances of this class are used to store the
103 The base template class to use for generated
475 by a policy instance. By default, Twig comes with one policy class:
476 ``\Twig\Sandbox\SecurityPolicy``. This class allows you to white-list some
H A Ddeprecated.rst25 following class and interface will be removed in 2.0:
74 * As of Twig 2.x, the ``\Twig\TwigFilter`` class is deprecated and will be
91 * As of Twig 2.x, the ``\Twig\TwigFunction`` class is deprecated and will be
108 * As of Twig 2.x, the ``\Twig\TwigTest`` class is deprecated and will be
/plugin/findologicxmlexport/vendor/webmozart/assert/
H A DREADME.md17 All assertions in the [`Assert`] class throw an `\InvalidArgumentException` if
62 class Employee
87 The [`Assert`] class provides the following assertions:
109 `isInstanceOf($value, $class, $message = '')` | Check that a value is an `instanceof` a
111 `notInstanceOf($value, $class, $message = '')` | Check that a value is not an `instanceof…
178 `classExists($value, $message = '')` | Check that a value is an existing class name
179 `subclassOf($value, $class, $message = '')` | Check that a class is a subclass of another
181 `implementsInterface($value, $class, $message = '')` | Check that a class implements an interface
182 `propertyExists($value, $property, $message = '')` | Check that a property exists in a class/obj…
184 `methodExists($value, $method, $message = '')` | Check that a method exists in a class/object
[all …]

1...<<71727374757677787980>>...87