Home
last modified time | relevance | path

Searched refs:classes (Results 276 – 300 of 396) sorted by last modified time

1...<<111213141516

/plugin/findologicxmlexport/vendor/sebastian/global-state/src/
H A DSnapshot.php74 private $classes = array(); variable in SebastianBergmann\\GlobalState\\Snapshot
226 public function classes() function in SebastianBergmann\\GlobalState\\Snapshot
228 return $this->classes;
273 $this->classes[] = $className;
276 $this->classes = array_reverse($this->classes);
339 foreach ($this->classes as $className) {
H A DBlacklist.php28 private $classes = array(); variable in SebastianBergmann\\GlobalState\\Blacklist
63 $this->classes[] = $className;
119 if (in_array($className, $this->classes)) {
/plugin/findologicxmlexport/vendor/jms/serializer/
H A DUPGRADING.md15 - Most of the classes are marked as `final`, inheritance is discouraged for all the cases, use comp…
17 - Removed the abstract classes `GenericSerializationVisito`r and `GenericDeserializationVisitor`.
47 - elements (as classes, interfaces, methods, properties...)
/plugin/findologicxmlexport/vendor/jms/serializer/doc/
H A Dconfiguration.rst62 For more complex handlers, it is advisable to extract them to dedicated classes,
/plugin/findologicxmlexport/vendor/doctrine/instantiator/docs/en/
H A Dindex.rst4 This library provides a way of avoiding usage of constructors when instantiating PHP classes.
/plugin/findologicxmlexport/vendor/hoa/regex/
H A DGrammar.pp48 // Character classes.
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/LegacyFixtures/
H A Dtest.legacy.test2 Old test classes usage
/plugin/findologicxmlexport/vendor/phpspec/prophecy/
H A DREADME.md114 and/or implement preset classes/interfaces by overriding all their public methods. The key
225 Those argument tokens are simple PHP classes, that implement
250 And you can add even more by implementing `TokenInterface` with your own custom classes.
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/
H A DClover.php60 $classes = $item->getClassesAndTraits();
65 foreach ($classes as $className => $class) {
H A DText.php91 $classes = sprintf(
124 $padding = max(array_map('strlen', [$classes, $methods, $lines]));
141 $output .= $this->format($colors['classes'], $padding, $classes);
156 $classes = $item->getClassesAndTraits();
158 foreach ($classes as $className => $class) {
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/js/
H A Dnv.d3.min.js2 …on(a){g=a}},snapDistance:{get:function(){return h},set:function(a){h=a}},classes:{get:function(){r…
/plugin/findologicxmlexport/vendor/phpunit/php-token-stream/src/Token/
H A DStream.php73 protected $classes; variable in PHP_Token_Stream
228 if ($this->classes !== null) {
229 return $this->classes;
234 return $this->classes;
350 $this->classes = [];
399 $this->classes[$class[count($class) - 1]] = $tmp;
431 $this->classes[$class[count($class) - 1]]['methods'][$name] = $tmp;
/plugin/findologicxmlexport/vendor/phpunit/php-token-stream/tests/Token/
H A DClassTest.php86 $classes = $ts->getClasses();
97 array_keys($classes)
108 $classes = $ts->getClasses();
110 $this->assertEquals(['Test', 'AnonymousClass:4#23'], array_keys($classes));
131 $classes = $ts->getClasses();
134 $this->assertArrayHasKey('AnonymousClass:6#23', $classes);
135 $this->assertArrayHasKey('AnonymousClass:12#53', $classes);
148 $classes = $ts->getClasses();
150 $this->assertArrayHasKey('class_with_method_named_empty', $classes);
161 $classes = $ts->getClasses();
[all …]
/plugin/findologicxmlexport/vendor/sebastian/comparator/tests/
H A Dautoload.php7 static $classes = null; variable
8 if ($classes === null) {
9 $classes = array( variable
33 if (isset($classes[$cn])) {
34 require __DIR__ . $classes[$cn];
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dadvanced_legacy.rst226 The ``Twig_Filter`` classes take options as their last argument. For instance,
456 Reading the existing ``TokenParser`` classes is the best way to learn all
/plugin/findologicxmlexport/vendor/doctrine/annotations/
H A DCHANGELOG.md79 - [110: setIgnoreNotImportedAnnotations(true) didn&rsquo;t work for existing classes](https://githu…
93 * testing all parent classes and interfaces when checking if the annotation cache
/plugin/findologicxmlexport/vendor/doctrine/annotations/docs/en/
H A Dannotations.rst5 maps docblock annotations to PHP classes. Because not all docblock annotations are used
6 for metadata purposes a filter is applied to ignore or skip classes that are not Doctrine annotatio…
43 … statements. The statement ``use Doctrine\ORM\Mapping AS ORM`` makes all classes under that namesp…
53 there is no other way to solve the architectural problems of autoloading annotation classes in a st…
130 once. That means that annotation classes that do not exist and
160 …tionRegistry#registerFile($file)`` to register a file that contains one or more Annotation classes.
163 …The given directories should *NOT* be the directory where classes of the namespace are in, but the…
H A Dindex.rst5 functionality for PHP classes.
39 used annotation configuration in classes. The annotation
61 containing them. There are multiple reader-classes implementing the
/plugin/findologicxmlexport/vendor/hoa/compiler/
H A DREADME.md214 You can apply any visitor classes.
/plugin/findologicxmlexport/vendor/jms/metadata/
H A DCHANGELOG.md104 - Fix locating files for classes without namespace [\#5](https://github.com/schmittjoh/metadata/pul…
/plugin/findologicxmlexport/vendor/jms/metadata/src/Driver/
H A DDriverChain.php45 $classes = [];
58 $classes = array_merge($classes, $driverClasses);
62 return $classes;
H A DFileLocator.php44 $classes = [];
57 $classes[] = $nsPrefix . str_replace('.', '\\', $fileName);
61 return $classes;
/plugin/findologicxmlexport/vendor/jms/metadata/src/
H A DMetadataFactory.php169 $classes = [];
173 $classes[] = $refl;
177 $classes = array_reverse($classes, false);
180 return $classes;
186 foreach ($classes as $class) {
/plugin/findologicxmlexport/vendor/hoa/zformat/
H A DREADME.md27 parameters, for instance for classes.
/plugin/findologicxmlexport/vendor/jms/serializer/doc/cookbook/
H A Dexclusion_strategies.rst231 affect the serialized content of others classes than the one you apply the

1...<<111213141516