Home
last modified time | relevance | path

Searched refs:id (Results 2301 – 2325 of 3526) sorted by path

1...<<919293949596979899100>>...142

/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/tests/tests/
H A DCodeCoverageTest.php295 if (version_compare(\PHPUnit_Runner_Version::id(), '4.7', '>=')) {
/plugin/findologicxmlexport/vendor/phpunit/php-token-stream/src/
H A DToken.php34 protected $id; variable in PHP_Token
40 * @param int $id
47 $this->id = $id;
71 return $this->id;
133 $i = $this->id;
182 for ($i = $this->id - 2; $i > $this->id - 7; $i -= 2) {
209 for ($i = $this->id - 2; $i > $this->id - 7; $i -= 2) {
321 $i = $this->id + 2;
352 $i = $this->id + 1;
602 $i = $this->id + 3;
[all …]
/plugin/findologicxmlexport/vendor/phpunit/php-token-stream/src/Token/
H A DStream.php153 $id = 0;
182 $this->tokens[] = new $tokenClass($text, $line, $this, $id++);
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Builder/
H A DIdentity.php28 * @param string $id Unique identification of expectation.
30 public function id($id); function
H A DInvocationMocker.php64 * @param mixed $id
68 public function id($id) function in PHPUnit_Framework_MockObject_Builder_InvocationMocker
70 $this->collection->registerId($id, $this);
193 * @param mixed $id
197 public function after($id) argument
199 $this->matcher->afterMatchBuilderId = $id;
H A DMatch.php21 * @param string $id The identification of the expectation that should
26 public function after($id); argument
H A DNamespace.php23 * @param string $id The identification of the match builder
27 public function lookupId($id); argument
34 …* @param string $id The identification of the match build…
37 public function registerId($id, PHPUnit_Framework_MockObject_Builder_Match $builder); argument
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/
H A DInvocationMocker.php68 * @param mixed $id
72 public function lookupId($id) argument
74 if (isset($this->builderMap[$id])) {
75 return $this->builderMap[$id];
82 * @param mixed $id
87 public function registerId($id, PHPUnit_Framework_MockObject_Builder_Match $builder) argument
89 if (isset($this->builderMap[$id])) {
91 'Match builder with id <' . $id . '> is already registered.'
95 $this->builderMap[$id] = $builder;
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Runner/
H A DVersion.php26 public static function id() function in PHPUnit_Runner_Version
45 if (strpos(self::id(), '-')) {
46 $version = explode('-', self::id())[0];
48 $version = self::id();
59 return 'PHPUnit ' . self::id() . ' by Sebastian Bergmann and contributors.';
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/TextUI/
H A DCommand.php575 exit(version_compare(PHPUnit_Runner_Version::id(), $option[1], '>=')
H A DTestRunner.php574 PHPUnit_Runner_Version::id()
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/
H A DTest.php229 $phpunitVersion = PHPUnit_Runner_Version::id();
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/TextUI/
H A Dtestdox-html.phpt46 <h2 id="BankAccountTest">BankAccount</h2>
/plugin/findologicxmlexport/vendor/twig/extensions/lib/Twig/Extensions/Extension/
H A DDate.php86 $id = sprintf('diff.%s.%s', $invert ? 'in' : 'ago', $unit);
88 return $this->translator->transChoice($id, $count, array('%count%' => $count), 'date');
/plugin/findologicxmlexport/vendor/twig/twig/doc/tags/
H A Dextends.rst26 <div id="content">{% block content %}{% endblock %}</div>
27 <div id="footer">
H A Dset.rst46 <div id="pagination">
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dtemplates.rst29 <ul id="navigation">
353 <div id="content">{% block content %}{% endblock %}</div>
354 <div id="footer">
/plugin/findologicxmlexport/vendor/webmozart/assert/
H A DREADME.md64 public function __construct($id)
66 Assert::integer($id, 'The employee ID must be an integer. Got: %s');
67 Assert::greaterThan($id, 0, 'The employee ID must be a positive integer. Got: %s');
/plugin/fksnewsfeed/admin/
H A Dpush.php71 foreach ($this->newsToId($allNews) as $id) {
72 if (array_search($id, $newsInStream) === false) {
73 $news = $this->helper->serviceNews->getById($id);
75 echo $this->newsAddForm($stream->name, $id);
/plugin/fksnewsfeed/inc/
H A DAbstractStream.php35 $id = uniqid();
39 $this->renderModalContent($renderer, $id, $params);
43 … protected function renderModalContent(Doku_Renderer $renderer, string $id, array $params): void { argument
45 …$renderer->doc .= '<button data-toggle="modal" data-target="#feedModal' . $id . '" class="btn btn-…
49 $renderer->doc .= '<div id="feedModal' . $id . '" class="modal" data-id="' . $id . '">
/plugin/fksnewsfeed/inc/ORM/
H A DAbstractService.php26 public function getById(int $id): ?AbstractModel { argument
27 …->query('SELECT * FROM ' . $this->table . ' WHERE ' . $this->table . '_id = ?', (int)$id)->fetch();
H A DModelNews.php90 public static function getCacheFileById(int $id): string { argument
91 return 'news-feed_news_' . $id;
/plugin/fksnewsfeed/inc/renderer/
H A DFykosRenderer.php68 protected function getPriorityField(int $id, string $streamName, array $params): string { argument
82 $form->setHiddenField('news[id]', $id);
87 $priority = $this->helper->servicePriority->findByNewsAndStream($id, $stream->streamId);
115 protected function btnEditNews(int $id, string $stream): string { argument
122 $editForm->setHiddenField('news[id]', $id);
132 $deleteForm->setHiddenField('news[id]', $id);
141 $purgeForm->setHiddenField('news[id]', $id);
H A DVyfukRenderer.php83 protected function getPriorityField($id, $streamName, $params) { argument
97 $form->setHiddenField('news[id]', $id);
103 $priority = $this->helper->servicePriority->findByNewsAndStream($id, $stream->streamId);
131 protected function btnEditNews($id, $stream) { argument
138 $editForm->setHiddenField('news[id]', $id);
148 $deleteForm->setHiddenField('news[id]', $id);
157 $purgeForm->setHiddenField('news[id]', $id);
/plugin/fksnewsfeed/
H A Dscript.js25 page_id: JSINFO.id,

1...<<919293949596979899100>>...142