Home
last modified time | relevance | path

Searched refs:class (Results 1601 – 1625 of 2173) sorted by last modified time

1...<<61626364656667686970>>...87

/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/EventDispatcher/
H A DEventDispatcherTest.php203 protected function dispatch($eventName, $class = 'Foo', $format = 'json', ?Event $event = null) argument
205 $this->dispatcher->dispatch($eventName, $class, $format, $event ?: $this->event);
/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/
H A DAnnotationRegistry.php134 public static function loadAnnotationClass(string $class) : bool argument
136 if (\class_exists($class, false)) {
140 if (\array_key_exists($class, self::$failedToAutoload)) {
145 if (\strpos($class, $namespace) === 0) {
146 $file = \str_replace('\\', \DIRECTORY_SEPARATOR, $class) . '.php';
165 if ($loader($class) === true) {
170 self::$failedToAutoload[$class] = null;
H A DIndexedReader.php47 public function getClassAnnotations(\ReflectionClass $class) argument
50 foreach ($this->delegate->getClassAnnotations($class) as $annot) {
60 public function getClassAnnotation(\ReflectionClass $class, $annotation) argument
62 return $this->delegate->getClassAnnotation($class, $annotation);
/plugin/findologicxmlexport/vendor/doctrine/annotations/
H A Dphpstan.neon12 …- '#Instantiated class Doctrine_Tests_Common_Annotations_Fixtures_ClassNoNamespaceNoComment not fo…
13 …rty Doctrine\\Tests\\Common\\Annotations\\DummyClassNonAnnotationProblem::\$foo has unknown class#'
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dinternals.rst125 class __TwigTemplate_1121b6f109fe93ebe8c6e22e3712bceb extends \Twig\Template
/plugin/findologicxmlexport/vendor/twig/twig/doc/tags/
H A Dembed.rst139 <div class="top_box">
145 <div class="bottom_box">
H A Dextends.rst59 <p class="important">
H A Dmacro.rst100 <div class="field">
/plugin/findologicxmlexport/vendor/twig/twig/lib/Twig/Filter/
H A DNode.php25 protected $class; variable in Twig_Filter_Node
27 public function __construct($class, array $options = []) argument
31 $this->class = $class;
/plugin/findologicxmlexport/vendor/twig/twig/src/
H A DExpressionParser.php87 $class = $op['class'];
88 $expr = new $class($expr, $expr1, $token->getLine());
109 $class = $operator['class'];
204 $class = $this->unaryOperators[$token->getValue()]['class'];
206 $ref = new \ReflectionClass($class);
219 $node = new $class($expr, $token->getLine());
398 $class = $this->getFunctionNodeClass($name, $line);
400 return new $class($name, $args, $line);
471 $class = $this->getFilterNodeClass('slice', $token->getLine());
507 $node = new $class($node, $name, $arguments, $token->getLine(), $tag);
[all …]
H A DParser.php230 public function addHandler($name, $class) argument
234 $this->handlers[$name] = $class;
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/Expression/
H A DCallExpression.php285 $class = substr($callable, 0, $pos);
287 if (!method_exists($class, $method)) {
292 $callable = [$class, $method];
/plugin/findologicxmlexport/vendor/twig/twig/src/Test/
H A DIntegrationTestCase.php220 list($class) = explode(':', $exception);
222 $this->assertThat(null, new $constraintClass($class));
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/autoescape/
H A Dobjects.test10 class UserForAutoEscapeTest
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/use/
H A Dinheritance.test11 <div class="overridden_sub_container">overridden sub_container</div>
15 <div class="container">{{ block('sub_container') }}</div>
19 <div class="sub_container">sub_container</div>
24 <div class="container"> <div class="overridden_sub_container">overridden sub_container</div>
H A Dinheritance2.test10 <div class="overridden_sub_container">overridden sub_container</div>
14 <div class="container">{{ block('sub_container') }}</div>
18 <div class="sub_container">sub_container</div>
23 <div class="container"> <div class="overridden_sub_container">overridden sub_container</div>
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/
H A DREADME.md168 The `PropertyMatcher` will match a specific property of a specific class:
173 // Will apply a filter to the property "id" of any objects of the class "MyClass"
180 The `TypeMatcher` will match any element by its type (instance of a class or any value that could b…
274 Doctrine proxy class (...\\\_\_CG\_\_\Proxy).
275 You can use the `DoctrineProxyFilter` to load the actual entity behind the Doctrine proxy class.
348 new TypeMatcher(m\MockInterface::class)
351 $myServiceWithMocks = new MyService(m::mock(MyDependency1::class), m::mock(MyDependency2::class));
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/src/DeepCopy/Matcher/
H A DPropertyMatcher.php13 private $class; variable in DeepCopy\\Matcher\\PropertyMatcher
21 * @param string $class Class name
24 public function __construct($class, $property) argument
26 $this->class = $class;
/plugin/findologicxmlexport/vendor/phpunit/php-token-stream/src/Token/
H A DStream.php353 $class = [];
396 $class[] = $token->getName();
399 $this->classes[$class[count($class) - 1]] = $tmp;
420 if (empty($class) &&
430 } elseif (!empty($class)) {
431 $this->classes[$class[count($class) - 1]]['methods'][$name] = $tmp;
434 $class[count($class) - 1] . '::' . $name,
455 array_pop($class);
/plugin/findologicxmlexport/vendor/phpunit/php-token-stream/tests/Token/
H A DClassTest.php18 private $class; variable in PHP_Token_ClassTest
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
H A DAssert.php2832 $class = new ReflectionClass($className);
2834 while ($class) {
2835 $attributes = $class->getStaticProperties();
2841 $class = $class->getParentClass();
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/TextUI/
H A Dlog-junit.phpt21 …<testcase name="testSuccess" class="StatusTest" file="%s/StatusTest.php" line="%d" assertions="1" …
22 …<testcase name="testFailure" class="StatusTest" file="%s/StatusTest.php" line="%d" assertions="1" …
29 …<testcase name="testError" class="StatusTest" file="%s/StatusTest.php" line="%d" assertions="0" ti…
36 …<testcase name="testWarning" class="StatusTest" file="%s/StatusTest.php" line="%d" assertions="0" …
H A Dstop-on-warning-via-cli.phpt22 No tests found in class "NoTestCases".
H A Dstop-on-warning-via-config.phpt23 No tests found in class "NoTestCases".
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Generator/
H A Dwsdl_class.tpl.dist1 {namespace}class {class_name} extends \SoapClient

1...<<61626364656667686970>>...87