Update documentation

This commit is contained in:
Sebastian Meyer 2024-02-19 14:52:57 +01:00
parent 45c1716876
commit 3db89b5841
73 changed files with 910 additions and 1109 deletions

View File

@ -3,32 +3,35 @@
Changelog Changelog
######### #########
* :ref:`v2-0-0` .. contents::
* :ref:`v1-1-0`
* :ref:`v1-0-1`
* :ref:`v1-0-0`
.. _v2-0-0:
v2.0.0 v2.0.0
====== ======
**Breaking Changes:** **Breaking Changes:**
* Raised minimum PHP version from 8.0 to 8.1 * Raised minimum PHP version from 8.0 to 8.1 in order to use `new features <https://www.php.net/releases/8.1/>`_ like
* Renamed traits for :php:namespace:`OCC\Basics\Interfaces` and moved to different namespace `array_is_list() <https://www.php.net/array_is_list>`_ and the spread operator on string-keyed arrays
* :php:namespace:`OCC\Basics\Interfaces` traits renamed and moved to different namespace
.. code-block::
OCC\Basics\InterfaceTraits\ArrayAccess -> OCC\Basics\Interfaces\ArrayAccessTrait
OCC\Basics\InterfaceTraits\Countable -> OCC\Basics\Interfaces\CountableTrait
OCC\Basics\InterfaceTraits\IteratorAggregate -> OCC\Basics\Interfaces\IteratorAggregateTrait
OCC\Basics\InterfaceTraits\Iterator -> OCC\Basics\Interfaces\IteratorTrait
* Renamed internal methods for :php:trait:`OCC\Basics\Traits\Getter` and :php:trait:`OCC\Basics\Traits\Setter` to avoid * Renamed internal methods for :php:trait:`OCC\Basics\Traits\Getter` and :php:trait:`OCC\Basics\Traits\Setter` to avoid
confusion with regular class method confusion with regular class methods
.. code-block:: php .. code-block:: php
// old methods // old methods
protected function magicGet{PascalCasePropertyName}(): mixed function magicGet{PascalCasePropertyName}(): mixed
protected function magicSet{PascalCasePropertyName}(mixed $value): void function magicSet{PascalCasePropertyName}(mixed $value): void
.. code-block:: php .. code-block:: php
// new methods // new methods
protected function _magicGet{PascalCasePropertyName}(): mixed function _magicGet{PascalCasePropertyName}(): mixed
protected function _magicSet{PascalCasePropertyName}(mixed $value): void function _magicSet{PascalCasePropertyName}(mixed $value): void
**New Features:** **New Features:**
@ -39,8 +42,6 @@ v2.0.0
* Extended API for all datastructures * Extended API for all datastructures
* Extended `documentation <https://opencultureconsulting.github.io/php-basics/>`_ * Extended `documentation <https://opencultureconsulting.github.io/php-basics/>`_
.. _v1-1-0:
v1.1.0 v1.1.0
====== ======
@ -57,8 +58,6 @@ v1.1.0
// new constructor signature // new constructor signature
public function __construct(array $allowedTypes = []) public function __construct(array $allowedTypes = [])
.. _v1-0-1:
v1.0.1 v1.0.1
====== ======
@ -66,8 +65,6 @@ v1.0.1
* Improved exception handling in :php:trait:`Singleton <OCC\Basics\Traits\Singleton>` trait * Improved exception handling in :php:trait:`Singleton <OCC\Basics\Traits\Singleton>` trait
.. _v1-0-0:
v1.0.0 v1.0.0
====== ======

View File

@ -4,12 +4,11 @@ Documentation
############# #############
.. meta:: .. meta::
:layout: landingpage :layout: landingpage
.. toctree:: .. toctree::
:hidden: :hidden:
:titlesonly:
overview/index overview/index
usage/index usage/index
changelog changelog

View File

@ -3,6 +3,54 @@
Installation Installation
############ ############
Composer
========
The intended and recommended way of re-using this package is via `Composer <https://getcomposer.org/>`_. The following
command will get you the latest version and make it a dependency of your project. It will also register all classes and
traits with the autoloader to make them available inside the application.
.. code-block:: shell .. code-block:: shell
composer require opencultureconsulting/basics # This will install the latest stable version suitable for your project
composer require "opencultureconsulting/basics"
If you want to use a specific version other than the latest available for your environment, you can do so by appending
the desired version constraint:
.. code-block:: shell
# This will install the latest patch level version of 2.0 (i. e. >=2.0.0 && <2.1.0)
composer require "opencultureconsulting/basics:~2.0"
All available versions as well as further information about :doc:`requirements` and dependencies can be found on
`Packagist <https://packagist.org/packages/opencultureconsulting/basics>`_.
Git
===
Alternatively, you can fetch the files from `GitHub <https://github.com/opencultureconsulting/php-basics>`_ and add
them to your project manually. The best way is by cloning the repository, because then you can easily update to a newer
version by just pulling the changes and checking out a different version tag.
.. code-block:: shell
# This will clone the repository into the "basics" directory
git clone https://github.com/opencultureconsulting/php-basics.git basics
If you want to use a specific version other than the latest development state, you have to specify the desired tag as
well:
.. code-block:: shell
# This will clone the repository state at version "2.0.0" into the "basics" directory
git clone --branch=v2.0.0 https://github.com/opencultureconsulting/php-basics.git basics
Be aware that you also need to make the classes and traits available in your application by either adding them to your
autoloader or by including all files individually in PHP.
Download
========
As a last resort you can also just download the files. You can find all available versions as well as the current
development state on the `GitHub release page <https://github.com/opencultureconsulting/php-basics/releases>`_.

View File

@ -3,5 +3,16 @@
Requirements Requirements
############ ############
PHP 8.1 Environment
Composer 2 ===========
This package requires at least **PHP 8.1**.
It is highly recommended to use `Composer <https://getcomposer.org/>`_ for dependency management and autoloading,
although it is technically not strictly required for re-using any of these classes and traits. But it certainly
makes it a lot easier!
Dependencies
============
This package does not have any external dependencies.

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -186,9 +186,9 @@
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictCollection.php"><a href="files/src-datastructures-strictcollection.html"><abbr title="src/DataStructures/StrictCollection.php">StrictCollection.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictCollection.php"><a href="files/src-datastructures-strictcollection.html"><abbr title="src/DataStructures/StrictCollection.php">StrictCollection.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">55</span> <span class="phpdocumentor-element-found-in__line">83</span>
<a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.55" class="phpdocumentor-element-found-in__source" data-line="55" data-modal="source-view" data-src="files/src/DataStructures/StrictCollection.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.83" class="phpdocumentor-element-found-in__source" data-line="83" data-modal="source-view" data-src="files/src/DataStructures/StrictCollection.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">A type-sensitive, unsorted collection.</p> <p class="phpdocumentor-summary">A type-sensitive, unsorted collection.</p>
@ -496,9 +496,9 @@ names.</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictCollection.php"><a href="files/src-datastructures-strictcollection.html"><abbr title="src/DataStructures/StrictCollection.php">StrictCollection.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictCollection.php"><a href="files/src-datastructures-strictcollection.html"><abbr title="src/DataStructures/StrictCollection.php">StrictCollection.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">373</span> <span class="phpdocumentor-element-found-in__line">401</span>
<a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.373" class="phpdocumentor-element-found-in__source" data-line="373" data-modal="source-view" data-src="files/src/DataStructures/StrictCollection.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.401" class="phpdocumentor-element-found-in__source" data-line="401" data-modal="source-view" data-src="files/src/DataStructures/StrictCollection.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Create a type-sensitive collection of items.</p> <p class="phpdocumentor-summary">Create a type-sensitive collection of items.</p>
@ -575,9 +575,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/Traits/Getter.php"><a href="files/src-traits-getter.html"><abbr title="src/Traits/Getter.php">Getter.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/Traits/Getter.php"><a href="files/src-traits-getter.html"><abbr title="src/Traits/Getter.php">Getter.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">54</span> <span class="phpdocumentor-element-found-in__line">60</span>
<a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.54" class="phpdocumentor-element-found-in__source" data-line="54" data-modal="source-view" data-src="files/src/Traits/Getter.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.60" class="phpdocumentor-element-found-in__source" data-line="60" data-modal="source-view" data-src="files/src/Traits/Getter.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Read data from an inaccessible property.</p> <p class="phpdocumentor-summary">Read data from an inaccessible property.</p>
@ -645,9 +645,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/Traits/Getter.php"><a href="files/src-traits-getter.html"><abbr title="src/Traits/Getter.php">Getter.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/Traits/Getter.php"><a href="files/src-traits-getter.html"><abbr title="src/Traits/Getter.php">Getter.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">77</span> <span class="phpdocumentor-element-found-in__line">83</span>
<a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.77" class="phpdocumentor-element-found-in__source" data-line="77" data-modal="source-view" data-src="files/src/Traits/Getter.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.83" class="phpdocumentor-element-found-in__source" data-line="83" data-modal="source-view" data-src="files/src/Traits/Getter.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Check if an inaccessible property is set and not empty.</p> <p class="phpdocumentor-summary">Check if an inaccessible property is set and not empty.</p>
@ -698,9 +698,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictCollection.php"><a href="files/src-datastructures-strictcollection.html"><abbr title="src/DataStructures/StrictCollection.php">StrictCollection.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictCollection.php"><a href="files/src-datastructures-strictcollection.html"><abbr title="src/DataStructures/StrictCollection.php">StrictCollection.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">93</span> <span class="phpdocumentor-element-found-in__line">121</span>
<a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.93" class="phpdocumentor-element-found-in__source" data-line="93" data-modal="source-view" data-src="files/src/DataStructures/StrictCollection.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.121" class="phpdocumentor-element-found-in__source" data-line="121" data-modal="source-view" data-src="files/src/DataStructures/StrictCollection.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Add/insert a new item at the specified index.</p> <p class="phpdocumentor-summary">Add/insert a new item at the specified index.</p>
@ -771,9 +771,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictCollection.php"><a href="files/src-datastructures-strictcollection.html"><abbr title="src/DataStructures/StrictCollection.php">StrictCollection.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictCollection.php"><a href="files/src-datastructures-strictcollection.html"><abbr title="src/DataStructures/StrictCollection.php">StrictCollection.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">105</span> <span class="phpdocumentor-element-found-in__line">133</span>
<a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.105" class="phpdocumentor-element-found-in__source" data-line="105" data-modal="source-view" data-src="files/src/DataStructures/StrictCollection.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.133" class="phpdocumentor-element-found-in__source" data-line="133" data-modal="source-view" data-src="files/src/DataStructures/StrictCollection.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Clear the collection of any items.</p> <p class="phpdocumentor-summary">Clear the collection of any items.</p>
@ -806,9 +806,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/Interfaces/CountableTrait.php"><a href="files/src-interfaces-countabletrait.html"><abbr title="src/Interfaces/CountableTrait.php">CountableTrait.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/Interfaces/CountableTrait.php"><a href="files/src-interfaces-countabletrait.html"><abbr title="src/Interfaces/CountableTrait.php">CountableTrait.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">60</span> <span class="phpdocumentor-element-found-in__line">62</span>
<a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.60" class="phpdocumentor-element-found-in__source" data-line="60" data-modal="source-view" data-src="files/src/Interfaces/CountableTrait.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.62" class="phpdocumentor-element-found-in__source" data-line="62" data-modal="source-view" data-src="files/src/Interfaces/CountableTrait.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Count the data items.</p> <p class="phpdocumentor-summary">Count the data items.</p>
@ -849,9 +849,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictCollection.php"><a href="files/src-datastructures-strictcollection.html"><abbr title="src/DataStructures/StrictCollection.php">StrictCollection.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictCollection.php"><a href="files/src-datastructures-strictcollection.html"><abbr title="src/DataStructures/StrictCollection.php">StrictCollection.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">119</span> <span class="phpdocumentor-element-found-in__line">147</span>
<a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.119" class="phpdocumentor-element-found-in__source" data-line="119" data-modal="source-view" data-src="files/src/DataStructures/StrictCollection.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.147" class="phpdocumentor-element-found-in__source" data-line="147" data-modal="source-view" data-src="files/src/DataStructures/StrictCollection.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Get the item at the specified index.</p> <p class="phpdocumentor-summary">Get the item at the specified index.</p>
@ -904,9 +904,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictCollection.php"><a href="files/src-datastructures-strictcollection.html"><abbr title="src/DataStructures/StrictCollection.php">StrictCollection.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictCollection.php"><a href="files/src-datastructures-strictcollection.html"><abbr title="src/DataStructures/StrictCollection.php">StrictCollection.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">131</span> <span class="phpdocumentor-element-found-in__line">159</span>
<a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.131" class="phpdocumentor-element-found-in__source" data-line="131" data-modal="source-view" data-src="files/src/DataStructures/StrictCollection.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.159" class="phpdocumentor-element-found-in__source" data-line="159" data-modal="source-view" data-src="files/src/DataStructures/StrictCollection.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Get allowed data types for collection items.</p> <p class="phpdocumentor-summary">Get allowed data types for collection items.</p>
@ -947,9 +947,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictCollection.php"><a href="files/src-datastructures-strictcollection.html"><abbr title="src/DataStructures/StrictCollection.php">StrictCollection.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictCollection.php"><a href="files/src-datastructures-strictcollection.html"><abbr title="src/DataStructures/StrictCollection.php">StrictCollection.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">145</span> <span class="phpdocumentor-element-found-in__line">173</span>
<a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.145" class="phpdocumentor-element-found-in__source" data-line="145" data-modal="source-view" data-src="files/src/DataStructures/StrictCollection.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.173" class="phpdocumentor-element-found-in__source" data-line="173" data-modal="source-view" data-src="files/src/DataStructures/StrictCollection.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Check if the item&#039;s data type is allowed in the collection.</p> <p class="phpdocumentor-summary">Check if the item&#039;s data type is allowed in the collection.</p>
@ -1002,9 +1002,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictCollection.php"><a href="files/src-datastructures-strictcollection.html"><abbr title="src/DataStructures/StrictCollection.php">StrictCollection.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictCollection.php"><a href="files/src-datastructures-strictcollection.html"><abbr title="src/DataStructures/StrictCollection.php">StrictCollection.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">171</span> <span class="phpdocumentor-element-found-in__line">199</span>
<a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.171" class="phpdocumentor-element-found-in__source" data-line="171" data-modal="source-view" data-src="files/src/DataStructures/StrictCollection.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.199" class="phpdocumentor-element-found-in__source" data-line="199" data-modal="source-view" data-src="files/src/DataStructures/StrictCollection.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Check if collection is empty.</p> <p class="phpdocumentor-summary">Check if collection is empty.</p>
@ -1045,9 +1045,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictCollection.php"><a href="files/src-datastructures-strictcollection.html"><abbr title="src/DataStructures/StrictCollection.php">StrictCollection.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictCollection.php"><a href="files/src-datastructures-strictcollection.html"><abbr title="src/DataStructures/StrictCollection.php">StrictCollection.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">188</span> <span class="phpdocumentor-element-found-in__line">216</span>
<a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.188" class="phpdocumentor-element-found-in__source" data-line="188" data-modal="source-view" data-src="files/src/DataStructures/StrictCollection.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.216" class="phpdocumentor-element-found-in__source" data-line="216" data-modal="source-view" data-src="files/src/DataStructures/StrictCollection.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Check if this collection can be considered a list.</p> <p class="phpdocumentor-summary">Check if this collection can be considered a list.</p>
@ -1106,9 +1106,9 @@ from <code class="prettyprint">0</code>.</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/Interfaces/ArrayAccessTrait.php"><a href="files/src-interfaces-arrayaccesstrait.html"><abbr title="src/Interfaces/ArrayAccessTrait.php">ArrayAccessTrait.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/Interfaces/ArrayAccessTrait.php"><a href="files/src-interfaces-arrayaccesstrait.html"><abbr title="src/Interfaces/ArrayAccessTrait.php">ArrayAccessTrait.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">62</span> <span class="phpdocumentor-element-found-in__line">64</span>
<a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.62" class="phpdocumentor-element-found-in__source" data-line="62" data-modal="source-view" data-src="files/src/Interfaces/ArrayAccessTrait.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.64" class="phpdocumentor-element-found-in__source" data-line="64" data-modal="source-view" data-src="files/src/Interfaces/ArrayAccessTrait.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Check if the specified offset exists.</p> <p class="phpdocumentor-summary">Check if the specified offset exists.</p>
@ -1161,9 +1161,9 @@ from <code class="prettyprint">0</code>.</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/Interfaces/ArrayAccessTrait.php"><a href="files/src-interfaces-arrayaccesstrait.html"><abbr title="src/Interfaces/ArrayAccessTrait.php">ArrayAccessTrait.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/Interfaces/ArrayAccessTrait.php"><a href="files/src-interfaces-arrayaccesstrait.html"><abbr title="src/Interfaces/ArrayAccessTrait.php">ArrayAccessTrait.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">76</span> <span class="phpdocumentor-element-found-in__line">78</span>
<a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.76" class="phpdocumentor-element-found-in__source" data-line="76" data-modal="source-view" data-src="files/src/Interfaces/ArrayAccessTrait.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.78" class="phpdocumentor-element-found-in__source" data-line="78" data-modal="source-view" data-src="files/src/Interfaces/ArrayAccessTrait.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Retrieve data at the specified offset.</p> <p class="phpdocumentor-summary">Retrieve data at the specified offset.</p>
@ -1216,9 +1216,9 @@ from <code class="prettyprint">0</code>.</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictCollection.php"><a href="files/src-datastructures-strictcollection.html"><abbr title="src/DataStructures/StrictCollection.php">StrictCollection.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictCollection.php"><a href="files/src-datastructures-strictcollection.html"><abbr title="src/DataStructures/StrictCollection.php">StrictCollection.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">205</span> <span class="phpdocumentor-element-found-in__line">233</span>
<a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.205" class="phpdocumentor-element-found-in__source" data-line="205" data-modal="source-view" data-src="files/src/DataStructures/StrictCollection.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.233" class="phpdocumentor-element-found-in__source" data-line="233" data-modal="source-view" data-src="files/src/DataStructures/StrictCollection.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Set the item at the specified offset.</p> <p class="phpdocumentor-summary">Set the item at the specified offset.</p>
@ -1289,9 +1289,9 @@ from <code class="prettyprint">0</code>.</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/Interfaces/ArrayAccessTrait.php"><a href="files/src-interfaces-arrayaccesstrait.html"><abbr title="src/Interfaces/ArrayAccessTrait.php">ArrayAccessTrait.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/Interfaces/ArrayAccessTrait.php"><a href="files/src-interfaces-arrayaccesstrait.html"><abbr title="src/Interfaces/ArrayAccessTrait.php">ArrayAccessTrait.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">109</span> <span class="phpdocumentor-element-found-in__line">111</span>
<a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.109" class="phpdocumentor-element-found-in__source" data-line="109" data-modal="source-view" data-src="files/src/Interfaces/ArrayAccessTrait.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.111" class="phpdocumentor-element-found-in__source" data-line="111" data-modal="source-view" data-src="files/src/Interfaces/ArrayAccessTrait.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Unset the specified offset.</p> <p class="phpdocumentor-summary">Unset the specified offset.</p>
@ -1336,9 +1336,9 @@ from <code class="prettyprint">0</code>.</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictCollection.php"><a href="files/src-datastructures-strictcollection.html"><abbr title="src/DataStructures/StrictCollection.php">StrictCollection.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictCollection.php"><a href="files/src-datastructures-strictcollection.html"><abbr title="src/DataStructures/StrictCollection.php">StrictCollection.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">235</span> <span class="phpdocumentor-element-found-in__line">263</span>
<a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.235" class="phpdocumentor-element-found-in__source" data-line="235" data-modal="source-view" data-src="files/src/DataStructures/StrictCollection.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.263" class="phpdocumentor-element-found-in__source" data-line="263" data-modal="source-view" data-src="files/src/DataStructures/StrictCollection.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Remove an item from the collection.</p> <p class="phpdocumentor-summary">Remove an item from the collection.</p>
@ -1383,9 +1383,9 @@ from <code class="prettyprint">0</code>.</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictCollection.php"><a href="files/src-datastructures-strictcollection.html"><abbr title="src/DataStructures/StrictCollection.php">StrictCollection.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictCollection.php"><a href="files/src-datastructures-strictcollection.html"><abbr title="src/DataStructures/StrictCollection.php">StrictCollection.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">245</span> <span class="phpdocumentor-element-found-in__line">273</span>
<a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.245" class="phpdocumentor-element-found-in__source" data-line="245" data-modal="source-view" data-src="files/src/DataStructures/StrictCollection.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.273" class="phpdocumentor-element-found-in__source" data-line="273" data-modal="source-view" data-src="files/src/DataStructures/StrictCollection.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Get string representation of $this.</p> <p class="phpdocumentor-summary">Get string representation of $this.</p>
@ -1424,9 +1424,9 @@ from <code class="prettyprint">0</code>.</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictCollection.php"><a href="files/src-datastructures-strictcollection.html"><abbr title="src/DataStructures/StrictCollection.php">StrictCollection.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictCollection.php"><a href="files/src-datastructures-strictcollection.html"><abbr title="src/DataStructures/StrictCollection.php">StrictCollection.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">262</span> <span class="phpdocumentor-element-found-in__line">290</span>
<a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.262" class="phpdocumentor-element-found-in__source" data-line="262" data-modal="source-view" data-src="files/src/DataStructures/StrictCollection.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.290" class="phpdocumentor-element-found-in__source" data-line="290" data-modal="source-view" data-src="files/src/DataStructures/StrictCollection.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Set an item at the specified index.</p> <p class="phpdocumentor-summary">Set an item at the specified index.</p>
@ -1497,9 +1497,9 @@ from <code class="prettyprint">0</code>.</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictCollection.php"><a href="files/src-datastructures-strictcollection.html"><abbr title="src/DataStructures/StrictCollection.php">StrictCollection.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictCollection.php"><a href="files/src-datastructures-strictcollection.html"><abbr title="src/DataStructures/StrictCollection.php">StrictCollection.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">293</span> <span class="phpdocumentor-element-found-in__line">321</span>
<a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.293" class="phpdocumentor-element-found-in__source" data-line="293" data-modal="source-view" data-src="files/src/DataStructures/StrictCollection.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.321" class="phpdocumentor-element-found-in__source" data-line="321" data-modal="source-view" data-src="files/src/DataStructures/StrictCollection.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Return array representation of collection.</p> <p class="phpdocumentor-summary">Return array representation of collection.</p>
@ -1540,9 +1540,9 @@ from <code class="prettyprint">0</code>.</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictCollection.php"><a href="files/src-datastructures-strictcollection.html"><abbr title="src/DataStructures/StrictCollection.php">StrictCollection.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictCollection.php"><a href="files/src-datastructures-strictcollection.html"><abbr title="src/DataStructures/StrictCollection.php">StrictCollection.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">309</span> <span class="phpdocumentor-element-found-in__line">337</span>
<a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.309" class="phpdocumentor-element-found-in__source" data-line="309" data-modal="source-view" data-src="files/src/DataStructures/StrictCollection.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.337" class="phpdocumentor-element-found-in__source" data-line="337" data-modal="source-view" data-src="files/src/DataStructures/StrictCollection.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Turn collection into a type-sensitive list.</p> <p class="phpdocumentor-summary">Turn collection into a type-sensitive list.</p>
@ -1608,9 +1608,9 @@ from <code class="prettyprint">0</code>.</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictCollection.php"><a href="files/src-datastructures-strictcollection.html"><abbr title="src/DataStructures/StrictCollection.php">StrictCollection.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictCollection.php"><a href="files/src-datastructures-strictcollection.html"><abbr title="src/DataStructures/StrictCollection.php">StrictCollection.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">329</span> <span class="phpdocumentor-element-found-in__line">357</span>
<a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.329" class="phpdocumentor-element-found-in__source" data-line="329" data-modal="source-view" data-src="files/src/DataStructures/StrictCollection.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.357" class="phpdocumentor-element-found-in__source" data-line="357" data-modal="source-view" data-src="files/src/DataStructures/StrictCollection.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Restore $this from string representation.</p> <p class="phpdocumentor-summary">Restore $this from string representation.</p>
@ -1653,9 +1653,9 @@ from <code class="prettyprint">0</code>.</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictCollection.php"><a href="files/src-datastructures-strictcollection.html"><abbr title="src/DataStructures/StrictCollection.php">StrictCollection.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictCollection.php"><a href="files/src-datastructures-strictcollection.html"><abbr title="src/DataStructures/StrictCollection.php">StrictCollection.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">276</span> <span class="phpdocumentor-element-found-in__line">304</span>
<a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.276" class="phpdocumentor-element-found-in__source" data-line="276" data-modal="source-view" data-src="files/src/DataStructures/StrictCollection.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictCollection.html#source-view.304" class="phpdocumentor-element-found-in__source" data-line="304" data-modal="source-view" data-src="files/src/DataStructures/StrictCollection.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Set allowed data types of collection items.</p> <p class="phpdocumentor-summary">Set allowed data types of collection items.</p>
@ -1854,17 +1854,6 @@ from <code class="prettyprint">0</code>.</p>
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -189,9 +189,9 @@
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">56</span> <span class="phpdocumentor-element-found-in__line">86</span>
<a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.56" class="phpdocumentor-element-found-in__source" data-line="56" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.86" class="phpdocumentor-element-found-in__source" data-line="86" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">A type-sensitive, taversable list.</p> <p class="phpdocumentor-summary">A type-sensitive, taversable list.</p>
@ -595,9 +595,9 @@ constructor with an array of atomic types or fully qualified class names.</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">696</span> <span class="phpdocumentor-element-found-in__line">726</span>
<a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.696" class="phpdocumentor-element-found-in__source" data-line="696" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.726" class="phpdocumentor-element-found-in__source" data-line="726" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Create a type-sensitive, traversable list of items.</p> <p class="phpdocumentor-summary">Create a type-sensitive, traversable list of items.</p>
@ -674,9 +674,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/Traits/Getter.php"><a href="files/src-traits-getter.html"><abbr title="src/Traits/Getter.php">Getter.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/Traits/Getter.php"><a href="files/src-traits-getter.html"><abbr title="src/Traits/Getter.php">Getter.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">54</span> <span class="phpdocumentor-element-found-in__line">60</span>
<a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.54" class="phpdocumentor-element-found-in__source" data-line="54" data-modal="source-view" data-src="files/src/Traits/Getter.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.60" class="phpdocumentor-element-found-in__source" data-line="60" data-modal="source-view" data-src="files/src/Traits/Getter.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Read data from an inaccessible property.</p> <p class="phpdocumentor-summary">Read data from an inaccessible property.</p>
@ -744,9 +744,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/Traits/Getter.php"><a href="files/src-traits-getter.html"><abbr title="src/Traits/Getter.php">Getter.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/Traits/Getter.php"><a href="files/src-traits-getter.html"><abbr title="src/Traits/Getter.php">Getter.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">77</span> <span class="phpdocumentor-element-found-in__line">83</span>
<a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.77" class="phpdocumentor-element-found-in__source" data-line="77" data-modal="source-view" data-src="files/src/Traits/Getter.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.83" class="phpdocumentor-element-found-in__source" data-line="83" data-modal="source-view" data-src="files/src/Traits/Getter.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Check if an inaccessible property is set and not empty.</p> <p class="phpdocumentor-summary">Check if an inaccessible property is set and not empty.</p>
@ -797,9 +797,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">82</span> <span class="phpdocumentor-element-found-in__line">112</span>
<a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.82" class="phpdocumentor-element-found-in__source" data-line="82" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.112" class="phpdocumentor-element-found-in__source" data-line="112" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Add/insert a new item at the specified offset.</p> <p class="phpdocumentor-summary">Add/insert a new item at the specified offset.</p>
@ -880,9 +880,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">98</span> <span class="phpdocumentor-element-found-in__line">128</span>
<a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.98" class="phpdocumentor-element-found-in__source" data-line="98" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.128" class="phpdocumentor-element-found-in__source" data-line="128" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Append items at the end of the list.</p> <p class="phpdocumentor-summary">Append items at the end of the list.</p>
@ -944,9 +944,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">126</span> <span class="phpdocumentor-element-found-in__line">156</span>
<a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.126" class="phpdocumentor-element-found-in__source" data-line="126" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.156" class="phpdocumentor-element-found-in__source" data-line="156" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Peek at the item at the beginning of the list.</p> <p class="phpdocumentor-summary">Peek at the item at the beginning of the list.</p>
@ -1004,9 +1004,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">138</span> <span class="phpdocumentor-element-found-in__line">168</span>
<a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.138" class="phpdocumentor-element-found-in__source" data-line="138" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.168" class="phpdocumentor-element-found-in__source" data-line="168" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Clear the list of any items.</p> <p class="phpdocumentor-summary">Clear the list of any items.</p>
@ -1039,9 +1039,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">153</span> <span class="phpdocumentor-element-found-in__line">183</span>
<a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.153" class="phpdocumentor-element-found-in__source" data-line="153" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.183" class="phpdocumentor-element-found-in__source" data-line="183" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Get the number of items on the list.</p> <p class="phpdocumentor-summary">Get the number of items on the list.</p>
@ -1082,9 +1082,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">165</span> <span class="phpdocumentor-element-found-in__line">195</span>
<a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.165" class="phpdocumentor-element-found-in__source" data-line="165" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.195" class="phpdocumentor-element-found-in__source" data-line="195" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Get the current list item.</p> <p class="phpdocumentor-summary">Get the current list item.</p>
@ -1125,9 +1125,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">181</span> <span class="phpdocumentor-element-found-in__line">211</span>
<a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.181" class="phpdocumentor-element-found-in__source" data-line="181" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.211" class="phpdocumentor-element-found-in__source" data-line="211" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Get the item at the specified index.</p> <p class="phpdocumentor-summary">Get the item at the specified index.</p>
@ -1197,9 +1197,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">193</span> <span class="phpdocumentor-element-found-in__line">223</span>
<a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.193" class="phpdocumentor-element-found-in__source" data-line="193" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.223" class="phpdocumentor-element-found-in__source" data-line="223" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Get allowed data types for list items.</p> <p class="phpdocumentor-summary">Get allowed data types for list items.</p>
@ -1240,9 +1240,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">205</span> <span class="phpdocumentor-element-found-in__line">235</span>
<a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.205" class="phpdocumentor-element-found-in__source" data-line="205" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.235" class="phpdocumentor-element-found-in__source" data-line="235" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Get the mode of iteration.</p> <p class="phpdocumentor-summary">Get the mode of iteration.</p>
@ -1283,9 +1283,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">219</span> <span class="phpdocumentor-element-found-in__line">249</span>
<a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.219" class="phpdocumentor-element-found-in__source" data-line="219" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.249" class="phpdocumentor-element-found-in__source" data-line="249" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Check if the item&#039;s data type is allowed on the list.</p> <p class="phpdocumentor-summary">Check if the item&#039;s data type is allowed on the list.</p>
@ -1338,9 +1338,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">245</span> <span class="phpdocumentor-element-found-in__line">275</span>
<a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.245" class="phpdocumentor-element-found-in__source" data-line="245" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.275" class="phpdocumentor-element-found-in__source" data-line="275" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Check if list is empty.</p> <p class="phpdocumentor-summary">Check if list is empty.</p>
@ -1381,9 +1381,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">257</span> <span class="phpdocumentor-element-found-in__line">287</span>
<a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.257" class="phpdocumentor-element-found-in__source" data-line="257" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.287" class="phpdocumentor-element-found-in__source" data-line="287" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Check if this can be considered a list.</p> <p class="phpdocumentor-summary">Check if this can be considered a list.</p>
@ -1424,9 +1424,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">269</span> <span class="phpdocumentor-element-found-in__line">299</span>
<a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.269" class="phpdocumentor-element-found-in__source" data-line="269" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.299" class="phpdocumentor-element-found-in__source" data-line="299" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Get the current list index.</p> <p class="phpdocumentor-summary">Get the current list index.</p>
@ -1467,9 +1467,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">281</span> <span class="phpdocumentor-element-found-in__line">311</span>
<a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.281" class="phpdocumentor-element-found-in__source" data-line="281" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.311" class="phpdocumentor-element-found-in__source" data-line="311" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Move the cursor to the next list index.</p> <p class="phpdocumentor-summary">Move the cursor to the next list index.</p>
@ -1502,9 +1502,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">295</span> <span class="phpdocumentor-element-found-in__line">325</span>
<a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.295" class="phpdocumentor-element-found-in__source" data-line="295" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.325" class="phpdocumentor-element-found-in__source" data-line="325" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Check if the specified index exists and is not empty.</p> <p class="phpdocumentor-summary">Check if the specified index exists and is not empty.</p>
@ -1557,9 +1557,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">311</span> <span class="phpdocumentor-element-found-in__line">341</span>
<a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.311" class="phpdocumentor-element-found-in__source" data-line="311" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.341" class="phpdocumentor-element-found-in__source" data-line="341" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Get the item from the specified index.</p> <p class="phpdocumentor-summary">Get the item from the specified index.</p>
@ -1629,9 +1629,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">329</span> <span class="phpdocumentor-element-found-in__line">359</span>
<a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.329" class="phpdocumentor-element-found-in__source" data-line="329" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.359" class="phpdocumentor-element-found-in__source" data-line="359" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Set the item at the specified offset.</p> <p class="phpdocumentor-summary">Set the item at the specified offset.</p>
@ -1712,9 +1712,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">354</span> <span class="phpdocumentor-element-found-in__line">384</span>
<a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.354" class="phpdocumentor-element-found-in__source" data-line="354" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.384" class="phpdocumentor-element-found-in__source" data-line="384" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Unset the item at the specified index.</p> <p class="phpdocumentor-summary">Unset the item at the specified index.</p>
@ -1776,9 +1776,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">368</span> <span class="phpdocumentor-element-found-in__line">398</span>
<a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.368" class="phpdocumentor-element-found-in__source" data-line="368" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.398" class="phpdocumentor-element-found-in__source" data-line="398" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Pops an item from the end of the list.</p> <p class="phpdocumentor-summary">Pops an item from the end of the list.</p>
@ -1836,9 +1836,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">384</span> <span class="phpdocumentor-element-found-in__line">414</span>
<a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.384" class="phpdocumentor-element-found-in__source" data-line="384" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.414" class="phpdocumentor-element-found-in__source" data-line="414" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Prepend items at the start of the list.</p> <p class="phpdocumentor-summary">Prepend items at the start of the list.</p>
@ -1900,9 +1900,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">410</span> <span class="phpdocumentor-element-found-in__line">440</span>
<a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.410" class="phpdocumentor-element-found-in__source" data-line="410" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.440" class="phpdocumentor-element-found-in__source" data-line="440" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Move the cursor to the previous list index.</p> <p class="phpdocumentor-summary">Move the cursor to the previous list index.</p>
@ -1935,9 +1935,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">426</span> <span class="phpdocumentor-element-found-in__line">456</span>
<a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.426" class="phpdocumentor-element-found-in__source" data-line="426" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.456" class="phpdocumentor-element-found-in__source" data-line="456" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Push an item at the end of the list.</p> <p class="phpdocumentor-summary">Push an item at the end of the list.</p>
@ -1999,9 +1999,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">450</span> <span class="phpdocumentor-element-found-in__line">480</span>
<a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.450" class="phpdocumentor-element-found-in__source" data-line="450" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.480" class="phpdocumentor-element-found-in__source" data-line="480" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Remove an item from the list.</p> <p class="phpdocumentor-summary">Remove an item from the list.</p>
@ -2063,9 +2063,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">462</span> <span class="phpdocumentor-element-found-in__line">492</span>
<a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.462" class="phpdocumentor-element-found-in__source" data-line="462" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.492" class="phpdocumentor-element-found-in__source" data-line="492" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Rewind the iterator&#039;s cursor.</p> <p class="phpdocumentor-summary">Rewind the iterator&#039;s cursor.</p>
@ -2098,9 +2098,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">491</span> <span class="phpdocumentor-element-found-in__line">521</span>
<a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.491" class="phpdocumentor-element-found-in__source" data-line="491" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.521" class="phpdocumentor-element-found-in__source" data-line="521" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Set an item at the specified index.</p> <p class="phpdocumentor-summary">Set an item at the specified index.</p>
@ -2171,9 +2171,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">538</span> <span class="phpdocumentor-element-found-in__line">568</span>
<a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.538" class="phpdocumentor-element-found-in__source" data-line="538" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.568" class="phpdocumentor-element-found-in__source" data-line="568" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Set the mode of iteration.</p> <p class="phpdocumentor-summary">Set the mode of iteration.</p>
@ -2255,9 +2255,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">560</span> <span class="phpdocumentor-element-found-in__line">590</span>
<a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.560" class="phpdocumentor-element-found-in__source" data-line="560" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.590" class="phpdocumentor-element-found-in__source" data-line="590" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Shift an item from the beginning of the list.</p> <p class="phpdocumentor-summary">Shift an item from the beginning of the list.</p>
@ -2315,9 +2315,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">572</span> <span class="phpdocumentor-element-found-in__line">602</span>
<a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.572" class="phpdocumentor-element-found-in__source" data-line="572" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.602" class="phpdocumentor-element-found-in__source" data-line="602" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Return array representation of list.</p> <p class="phpdocumentor-summary">Return array representation of list.</p>
@ -2358,9 +2358,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">602</span> <span class="phpdocumentor-element-found-in__line">632</span>
<a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.602" class="phpdocumentor-element-found-in__source" data-line="602" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.632" class="phpdocumentor-element-found-in__source" data-line="632" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Peek at the item at the end of the list.</p> <p class="phpdocumentor-summary">Peek at the item at the end of the list.</p>
@ -2418,9 +2418,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">584</span> <span class="phpdocumentor-element-found-in__line">614</span>
<a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.584" class="phpdocumentor-element-found-in__source" data-line="584" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.614" class="phpdocumentor-element-found-in__source" data-line="614" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Turn list into a type-sensitive collection.</p> <p class="phpdocumentor-summary">Turn list into a type-sensitive collection.</p>
@ -2461,9 +2461,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">634</span> <span class="phpdocumentor-element-found-in__line">664</span>
<a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.634" class="phpdocumentor-element-found-in__source" data-line="634" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.664" class="phpdocumentor-element-found-in__source" data-line="664" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Prepend the list with an item.</p> <p class="phpdocumentor-summary">Prepend the list with an item.</p>
@ -2525,9 +2525,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">654</span> <span class="phpdocumentor-element-found-in__line">684</span>
<a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.654" class="phpdocumentor-element-found-in__source" data-line="654" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.684" class="phpdocumentor-element-found-in__source" data-line="684" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Check if current cursor position is valid.</p> <p class="phpdocumentor-summary">Check if current cursor position is valid.</p>
@ -2568,9 +2568,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">505</span> <span class="phpdocumentor-element-found-in__line">535</span>
<a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.505" class="phpdocumentor-element-found-in__source" data-line="505" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictList.html#source-view.535" class="phpdocumentor-element-found-in__source" data-line="535" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Set allowed data types of list items.</p> <p class="phpdocumentor-summary">Set allowed data types of list items.</p>
@ -2783,17 +2783,6 @@ Possible values are:</p>
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -186,9 +186,9 @@
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictQueue.php"><a href="files/src-datastructures-strictqueue.html"><abbr title="src/DataStructures/StrictQueue.php">StrictQueue.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictQueue.php"><a href="files/src-datastructures-strictqueue.html"><abbr title="src/DataStructures/StrictQueue.php">StrictQueue.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">53</span> <span class="phpdocumentor-element-found-in__line">55</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.53" class="phpdocumentor-element-found-in__source" data-line="53" data-modal="source-view" data-src="files/src/DataStructures/StrictQueue.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.55" class="phpdocumentor-element-found-in__source" data-line="55" data-modal="source-view" data-src="files/src/DataStructures/StrictQueue.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">A type-sensitive, taversable queue (FIFO).</p> <p class="phpdocumentor-summary">A type-sensitive, taversable queue (FIFO).</p>
@ -608,9 +608,9 @@ like <a href="https://www.php.net/splqueue">\SplQueue</a>.</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictQueue.php"><a href="files/src-datastructures-strictqueue.html"><abbr title="src/DataStructures/StrictQueue.php">StrictQueue.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictQueue.php"><a href="files/src-datastructures-strictqueue.html"><abbr title="src/DataStructures/StrictQueue.php">StrictQueue.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">144</span> <span class="phpdocumentor-element-found-in__line">146</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.144" class="phpdocumentor-element-found-in__source" data-line="144" data-modal="source-view" data-src="files/src/DataStructures/StrictQueue.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.146" class="phpdocumentor-element-found-in__source" data-line="146" data-modal="source-view" data-src="files/src/DataStructures/StrictQueue.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Create a type-sensitive, traversable queue of items.</p> <p class="phpdocumentor-summary">Create a type-sensitive, traversable queue of items.</p>
@ -687,9 +687,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/Traits/Getter.php"><a href="files/src-traits-getter.html"><abbr title="src/Traits/Getter.php">Getter.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/Traits/Getter.php"><a href="files/src-traits-getter.html"><abbr title="src/Traits/Getter.php">Getter.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">54</span> <span class="phpdocumentor-element-found-in__line">60</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.54" class="phpdocumentor-element-found-in__source" data-line="54" data-modal="source-view" data-src="files/src/Traits/Getter.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.60" class="phpdocumentor-element-found-in__source" data-line="60" data-modal="source-view" data-src="files/src/Traits/Getter.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Read data from an inaccessible property.</p> <p class="phpdocumentor-summary">Read data from an inaccessible property.</p>
@ -757,9 +757,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/Traits/Getter.php"><a href="files/src-traits-getter.html"><abbr title="src/Traits/Getter.php">Getter.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/Traits/Getter.php"><a href="files/src-traits-getter.html"><abbr title="src/Traits/Getter.php">Getter.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">77</span> <span class="phpdocumentor-element-found-in__line">83</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.77" class="phpdocumentor-element-found-in__source" data-line="77" data-modal="source-view" data-src="files/src/Traits/Getter.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.83" class="phpdocumentor-element-found-in__source" data-line="83" data-modal="source-view" data-src="files/src/Traits/Getter.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Check if an inaccessible property is set and not empty.</p> <p class="phpdocumentor-summary">Check if an inaccessible property is set and not empty.</p>
@ -810,9 +810,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">82</span> <span class="phpdocumentor-element-found-in__line">112</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.82" class="phpdocumentor-element-found-in__source" data-line="82" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.112" class="phpdocumentor-element-found-in__source" data-line="112" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Add/insert a new item at the specified offset.</p> <p class="phpdocumentor-summary">Add/insert a new item at the specified offset.</p>
@ -893,9 +893,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">98</span> <span class="phpdocumentor-element-found-in__line">128</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.98" class="phpdocumentor-element-found-in__source" data-line="98" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.128" class="phpdocumentor-element-found-in__source" data-line="128" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Append items at the end of the list.</p> <p class="phpdocumentor-summary">Append items at the end of the list.</p>
@ -957,9 +957,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">126</span> <span class="phpdocumentor-element-found-in__line">156</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.126" class="phpdocumentor-element-found-in__source" data-line="126" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.156" class="phpdocumentor-element-found-in__source" data-line="156" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Peek at the item at the beginning of the list.</p> <p class="phpdocumentor-summary">Peek at the item at the beginning of the list.</p>
@ -1017,9 +1017,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">138</span> <span class="phpdocumentor-element-found-in__line">168</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.138" class="phpdocumentor-element-found-in__source" data-line="138" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.168" class="phpdocumentor-element-found-in__source" data-line="168" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Clear the list of any items.</p> <p class="phpdocumentor-summary">Clear the list of any items.</p>
@ -1052,9 +1052,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">153</span> <span class="phpdocumentor-element-found-in__line">183</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.153" class="phpdocumentor-element-found-in__source" data-line="153" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.183" class="phpdocumentor-element-found-in__source" data-line="183" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Get the number of items on the list.</p> <p class="phpdocumentor-summary">Get the number of items on the list.</p>
@ -1095,9 +1095,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">165</span> <span class="phpdocumentor-element-found-in__line">195</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.165" class="phpdocumentor-element-found-in__source" data-line="165" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.195" class="phpdocumentor-element-found-in__source" data-line="195" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Get the current list item.</p> <p class="phpdocumentor-summary">Get the current list item.</p>
@ -1138,9 +1138,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictQueue.php"><a href="files/src-datastructures-strictqueue.html"><abbr title="src/DataStructures/StrictQueue.php">StrictQueue.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictQueue.php"><a href="files/src-datastructures-strictqueue.html"><abbr title="src/DataStructures/StrictQueue.php">StrictQueue.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">62</span> <span class="phpdocumentor-element-found-in__line">64</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.62" class="phpdocumentor-element-found-in__source" data-line="62" data-modal="source-view" data-src="files/src/DataStructures/StrictQueue.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.64" class="phpdocumentor-element-found-in__source" data-line="64" data-modal="source-view" data-src="files/src/DataStructures/StrictQueue.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Dequeue an item from the queue.</p> <p class="phpdocumentor-summary">Dequeue an item from the queue.</p>
@ -1181,9 +1181,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictQueue.php"><a href="files/src-datastructures-strictqueue.html"><abbr title="src/DataStructures/StrictQueue.php">StrictQueue.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictQueue.php"><a href="files/src-datastructures-strictqueue.html"><abbr title="src/DataStructures/StrictQueue.php">StrictQueue.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">78</span> <span class="phpdocumentor-element-found-in__line">80</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.78" class="phpdocumentor-element-found-in__source" data-line="78" data-modal="source-view" data-src="files/src/DataStructures/StrictQueue.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.80" class="phpdocumentor-element-found-in__source" data-line="80" data-modal="source-view" data-src="files/src/DataStructures/StrictQueue.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Add an item to the queue.</p> <p class="phpdocumentor-summary">Add an item to the queue.</p>
@ -1245,9 +1245,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">181</span> <span class="phpdocumentor-element-found-in__line">211</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.181" class="phpdocumentor-element-found-in__source" data-line="181" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.211" class="phpdocumentor-element-found-in__source" data-line="211" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Get the item at the specified index.</p> <p class="phpdocumentor-summary">Get the item at the specified index.</p>
@ -1317,9 +1317,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">193</span> <span class="phpdocumentor-element-found-in__line">223</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.193" class="phpdocumentor-element-found-in__source" data-line="193" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.223" class="phpdocumentor-element-found-in__source" data-line="223" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Get allowed data types for list items.</p> <p class="phpdocumentor-summary">Get allowed data types for list items.</p>
@ -1360,9 +1360,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">205</span> <span class="phpdocumentor-element-found-in__line">235</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.205" class="phpdocumentor-element-found-in__source" data-line="205" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.235" class="phpdocumentor-element-found-in__source" data-line="235" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Get the mode of iteration.</p> <p class="phpdocumentor-summary">Get the mode of iteration.</p>
@ -1403,9 +1403,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">219</span> <span class="phpdocumentor-element-found-in__line">249</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.219" class="phpdocumentor-element-found-in__source" data-line="219" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.249" class="phpdocumentor-element-found-in__source" data-line="249" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Check if the item&#039;s data type is allowed on the list.</p> <p class="phpdocumentor-summary">Check if the item&#039;s data type is allowed on the list.</p>
@ -1458,9 +1458,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">245</span> <span class="phpdocumentor-element-found-in__line">275</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.245" class="phpdocumentor-element-found-in__source" data-line="245" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.275" class="phpdocumentor-element-found-in__source" data-line="275" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Check if list is empty.</p> <p class="phpdocumentor-summary">Check if list is empty.</p>
@ -1501,9 +1501,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">257</span> <span class="phpdocumentor-element-found-in__line">287</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.257" class="phpdocumentor-element-found-in__source" data-line="257" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.287" class="phpdocumentor-element-found-in__source" data-line="287" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Check if this can be considered a list.</p> <p class="phpdocumentor-summary">Check if this can be considered a list.</p>
@ -1544,9 +1544,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">269</span> <span class="phpdocumentor-element-found-in__line">299</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.269" class="phpdocumentor-element-found-in__source" data-line="269" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.299" class="phpdocumentor-element-found-in__source" data-line="299" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Get the current list index.</p> <p class="phpdocumentor-summary">Get the current list index.</p>
@ -1587,9 +1587,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">281</span> <span class="phpdocumentor-element-found-in__line">311</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.281" class="phpdocumentor-element-found-in__source" data-line="281" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.311" class="phpdocumentor-element-found-in__source" data-line="311" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Move the cursor to the next list index.</p> <p class="phpdocumentor-summary">Move the cursor to the next list index.</p>
@ -1622,9 +1622,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">295</span> <span class="phpdocumentor-element-found-in__line">325</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.295" class="phpdocumentor-element-found-in__source" data-line="295" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.325" class="phpdocumentor-element-found-in__source" data-line="325" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Check if the specified index exists and is not empty.</p> <p class="phpdocumentor-summary">Check if the specified index exists and is not empty.</p>
@ -1677,9 +1677,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">311</span> <span class="phpdocumentor-element-found-in__line">341</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.311" class="phpdocumentor-element-found-in__source" data-line="311" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.341" class="phpdocumentor-element-found-in__source" data-line="341" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Get the item from the specified index.</p> <p class="phpdocumentor-summary">Get the item from the specified index.</p>
@ -1749,9 +1749,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">329</span> <span class="phpdocumentor-element-found-in__line">359</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.329" class="phpdocumentor-element-found-in__source" data-line="329" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.359" class="phpdocumentor-element-found-in__source" data-line="359" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Set the item at the specified offset.</p> <p class="phpdocumentor-summary">Set the item at the specified offset.</p>
@ -1832,9 +1832,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">354</span> <span class="phpdocumentor-element-found-in__line">384</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.354" class="phpdocumentor-element-found-in__source" data-line="354" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.384" class="phpdocumentor-element-found-in__source" data-line="384" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Unset the item at the specified index.</p> <p class="phpdocumentor-summary">Unset the item at the specified index.</p>
@ -1896,9 +1896,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">368</span> <span class="phpdocumentor-element-found-in__line">398</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.368" class="phpdocumentor-element-found-in__source" data-line="368" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.398" class="phpdocumentor-element-found-in__source" data-line="398" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Pops an item from the end of the list.</p> <p class="phpdocumentor-summary">Pops an item from the end of the list.</p>
@ -1956,9 +1956,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">384</span> <span class="phpdocumentor-element-found-in__line">414</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.384" class="phpdocumentor-element-found-in__source" data-line="384" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.414" class="phpdocumentor-element-found-in__source" data-line="414" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Prepend items at the start of the list.</p> <p class="phpdocumentor-summary">Prepend items at the start of the list.</p>
@ -2020,9 +2020,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">410</span> <span class="phpdocumentor-element-found-in__line">440</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.410" class="phpdocumentor-element-found-in__source" data-line="410" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.440" class="phpdocumentor-element-found-in__source" data-line="440" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Move the cursor to the previous list index.</p> <p class="phpdocumentor-summary">Move the cursor to the previous list index.</p>
@ -2055,9 +2055,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">426</span> <span class="phpdocumentor-element-found-in__line">456</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.426" class="phpdocumentor-element-found-in__source" data-line="426" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.456" class="phpdocumentor-element-found-in__source" data-line="456" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Push an item at the end of the list.</p> <p class="phpdocumentor-summary">Push an item at the end of the list.</p>
@ -2119,9 +2119,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">450</span> <span class="phpdocumentor-element-found-in__line">480</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.450" class="phpdocumentor-element-found-in__source" data-line="450" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.480" class="phpdocumentor-element-found-in__source" data-line="480" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Remove an item from the list.</p> <p class="phpdocumentor-summary">Remove an item from the list.</p>
@ -2183,9 +2183,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">462</span> <span class="phpdocumentor-element-found-in__line">492</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.462" class="phpdocumentor-element-found-in__source" data-line="462" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.492" class="phpdocumentor-element-found-in__source" data-line="492" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Rewind the iterator&#039;s cursor.</p> <p class="phpdocumentor-summary">Rewind the iterator&#039;s cursor.</p>
@ -2218,9 +2218,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">491</span> <span class="phpdocumentor-element-found-in__line">521</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.491" class="phpdocumentor-element-found-in__source" data-line="491" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.521" class="phpdocumentor-element-found-in__source" data-line="521" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Set an item at the specified index.</p> <p class="phpdocumentor-summary">Set an item at the specified index.</p>
@ -2291,9 +2291,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictQueue.php"><a href="files/src-datastructures-strictqueue.html"><abbr title="src/DataStructures/StrictQueue.php">StrictQueue.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictQueue.php"><a href="files/src-datastructures-strictqueue.html"><abbr title="src/DataStructures/StrictQueue.php">StrictQueue.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">106</span> <span class="phpdocumentor-element-found-in__line">108</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.106" class="phpdocumentor-element-found-in__source" data-line="106" data-modal="source-view" data-src="files/src/DataStructures/StrictQueue.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.108" class="phpdocumentor-element-found-in__source" data-line="108" data-modal="source-view" data-src="files/src/DataStructures/StrictQueue.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Set the mode of iteration.</p> <p class="phpdocumentor-summary">Set the mode of iteration.</p>
@ -2384,9 +2384,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">560</span> <span class="phpdocumentor-element-found-in__line">590</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.560" class="phpdocumentor-element-found-in__source" data-line="560" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.590" class="phpdocumentor-element-found-in__source" data-line="590" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Shift an item from the beginning of the list.</p> <p class="phpdocumentor-summary">Shift an item from the beginning of the list.</p>
@ -2444,9 +2444,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">572</span> <span class="phpdocumentor-element-found-in__line">602</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.572" class="phpdocumentor-element-found-in__source" data-line="572" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.602" class="phpdocumentor-element-found-in__source" data-line="602" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Return array representation of list.</p> <p class="phpdocumentor-summary">Return array representation of list.</p>
@ -2487,9 +2487,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">602</span> <span class="phpdocumentor-element-found-in__line">632</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.602" class="phpdocumentor-element-found-in__source" data-line="602" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.632" class="phpdocumentor-element-found-in__source" data-line="632" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Peek at the item at the end of the list.</p> <p class="phpdocumentor-summary">Peek at the item at the end of the list.</p>
@ -2547,9 +2547,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">584</span> <span class="phpdocumentor-element-found-in__line">614</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.584" class="phpdocumentor-element-found-in__source" data-line="584" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.614" class="phpdocumentor-element-found-in__source" data-line="614" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Turn list into a type-sensitive collection.</p> <p class="phpdocumentor-summary">Turn list into a type-sensitive collection.</p>
@ -2590,9 +2590,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">634</span> <span class="phpdocumentor-element-found-in__line">664</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.634" class="phpdocumentor-element-found-in__source" data-line="634" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.664" class="phpdocumentor-element-found-in__source" data-line="664" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Prepend the list with an item.</p> <p class="phpdocumentor-summary">Prepend the list with an item.</p>
@ -2654,9 +2654,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">654</span> <span class="phpdocumentor-element-found-in__line">684</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.654" class="phpdocumentor-element-found-in__source" data-line="654" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.684" class="phpdocumentor-element-found-in__source" data-line="684" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Check if current cursor position is valid.</p> <p class="phpdocumentor-summary">Check if current cursor position is valid.</p>
@ -2697,9 +2697,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">505</span> <span class="phpdocumentor-element-found-in__line">535</span>
<a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.505" class="phpdocumentor-element-found-in__source" data-line="505" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictQueue.html#source-view.535" class="phpdocumentor-element-found-in__source" data-line="535" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Set allowed data types of list items.</p> <p class="phpdocumentor-summary">Set allowed data types of list items.</p>
@ -2914,17 +2914,6 @@ Possible values are:</p>
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -186,9 +186,9 @@
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictStack.php"><a href="files/src-datastructures-strictstack.html"><abbr title="src/DataStructures/StrictStack.php">StrictStack.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictStack.php"><a href="files/src-datastructures-strictstack.html"><abbr title="src/DataStructures/StrictStack.php">StrictStack.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">53</span> <span class="phpdocumentor-element-found-in__line">55</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.53" class="phpdocumentor-element-found-in__source" data-line="53" data-modal="source-view" data-src="files/src/DataStructures/StrictStack.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.55" class="phpdocumentor-element-found-in__source" data-line="55" data-modal="source-view" data-src="files/src/DataStructures/StrictStack.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">A type-sensitive, taversable stack (LIFO).</p> <p class="phpdocumentor-summary">A type-sensitive, taversable stack (LIFO).</p>
@ -608,9 +608,9 @@ like <a href="https://www.php.net/splstack">\SplStack</a>.</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictStack.php"><a href="files/src-datastructures-strictstack.html"><abbr title="src/DataStructures/StrictStack.php">StrictStack.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictStack.php"><a href="files/src-datastructures-strictstack.html"><abbr title="src/DataStructures/StrictStack.php">StrictStack.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">144</span> <span class="phpdocumentor-element-found-in__line">146</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.144" class="phpdocumentor-element-found-in__source" data-line="144" data-modal="source-view" data-src="files/src/DataStructures/StrictStack.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.146" class="phpdocumentor-element-found-in__source" data-line="146" data-modal="source-view" data-src="files/src/DataStructures/StrictStack.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Create a type-sensitive, traversable stack of items.</p> <p class="phpdocumentor-summary">Create a type-sensitive, traversable stack of items.</p>
@ -687,9 +687,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/Traits/Getter.php"><a href="files/src-traits-getter.html"><abbr title="src/Traits/Getter.php">Getter.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/Traits/Getter.php"><a href="files/src-traits-getter.html"><abbr title="src/Traits/Getter.php">Getter.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">54</span> <span class="phpdocumentor-element-found-in__line">60</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.54" class="phpdocumentor-element-found-in__source" data-line="54" data-modal="source-view" data-src="files/src/Traits/Getter.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.60" class="phpdocumentor-element-found-in__source" data-line="60" data-modal="source-view" data-src="files/src/Traits/Getter.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Read data from an inaccessible property.</p> <p class="phpdocumentor-summary">Read data from an inaccessible property.</p>
@ -757,9 +757,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/Traits/Getter.php"><a href="files/src-traits-getter.html"><abbr title="src/Traits/Getter.php">Getter.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/Traits/Getter.php"><a href="files/src-traits-getter.html"><abbr title="src/Traits/Getter.php">Getter.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">77</span> <span class="phpdocumentor-element-found-in__line">83</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.77" class="phpdocumentor-element-found-in__source" data-line="77" data-modal="source-view" data-src="files/src/Traits/Getter.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.83" class="phpdocumentor-element-found-in__source" data-line="83" data-modal="source-view" data-src="files/src/Traits/Getter.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Check if an inaccessible property is set and not empty.</p> <p class="phpdocumentor-summary">Check if an inaccessible property is set and not empty.</p>
@ -810,9 +810,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">82</span> <span class="phpdocumentor-element-found-in__line">112</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.82" class="phpdocumentor-element-found-in__source" data-line="82" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.112" class="phpdocumentor-element-found-in__source" data-line="112" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Add/insert a new item at the specified offset.</p> <p class="phpdocumentor-summary">Add/insert a new item at the specified offset.</p>
@ -893,9 +893,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">98</span> <span class="phpdocumentor-element-found-in__line">128</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.98" class="phpdocumentor-element-found-in__source" data-line="98" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.128" class="phpdocumentor-element-found-in__source" data-line="128" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Append items at the end of the list.</p> <p class="phpdocumentor-summary">Append items at the end of the list.</p>
@ -957,9 +957,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">126</span> <span class="phpdocumentor-element-found-in__line">156</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.126" class="phpdocumentor-element-found-in__source" data-line="126" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.156" class="phpdocumentor-element-found-in__source" data-line="156" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Peek at the item at the beginning of the list.</p> <p class="phpdocumentor-summary">Peek at the item at the beginning of the list.</p>
@ -1017,9 +1017,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">138</span> <span class="phpdocumentor-element-found-in__line">168</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.138" class="phpdocumentor-element-found-in__source" data-line="138" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.168" class="phpdocumentor-element-found-in__source" data-line="168" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Clear the list of any items.</p> <p class="phpdocumentor-summary">Clear the list of any items.</p>
@ -1052,9 +1052,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">153</span> <span class="phpdocumentor-element-found-in__line">183</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.153" class="phpdocumentor-element-found-in__source" data-line="153" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.183" class="phpdocumentor-element-found-in__source" data-line="183" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Get the number of items on the list.</p> <p class="phpdocumentor-summary">Get the number of items on the list.</p>
@ -1095,9 +1095,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">165</span> <span class="phpdocumentor-element-found-in__line">195</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.165" class="phpdocumentor-element-found-in__source" data-line="165" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.195" class="phpdocumentor-element-found-in__source" data-line="195" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Get the current list item.</p> <p class="phpdocumentor-summary">Get the current list item.</p>
@ -1138,9 +1138,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">181</span> <span class="phpdocumentor-element-found-in__line">211</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.181" class="phpdocumentor-element-found-in__source" data-line="181" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.211" class="phpdocumentor-element-found-in__source" data-line="211" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Get the item at the specified index.</p> <p class="phpdocumentor-summary">Get the item at the specified index.</p>
@ -1210,9 +1210,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">193</span> <span class="phpdocumentor-element-found-in__line">223</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.193" class="phpdocumentor-element-found-in__source" data-line="193" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.223" class="phpdocumentor-element-found-in__source" data-line="223" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Get allowed data types for list items.</p> <p class="phpdocumentor-summary">Get allowed data types for list items.</p>
@ -1253,9 +1253,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">205</span> <span class="phpdocumentor-element-found-in__line">235</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.205" class="phpdocumentor-element-found-in__source" data-line="205" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.235" class="phpdocumentor-element-found-in__source" data-line="235" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Get the mode of iteration.</p> <p class="phpdocumentor-summary">Get the mode of iteration.</p>
@ -1296,9 +1296,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">219</span> <span class="phpdocumentor-element-found-in__line">249</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.219" class="phpdocumentor-element-found-in__source" data-line="219" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.249" class="phpdocumentor-element-found-in__source" data-line="249" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Check if the item&#039;s data type is allowed on the list.</p> <p class="phpdocumentor-summary">Check if the item&#039;s data type is allowed on the list.</p>
@ -1351,9 +1351,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">245</span> <span class="phpdocumentor-element-found-in__line">275</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.245" class="phpdocumentor-element-found-in__source" data-line="245" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.275" class="phpdocumentor-element-found-in__source" data-line="275" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Check if list is empty.</p> <p class="phpdocumentor-summary">Check if list is empty.</p>
@ -1394,9 +1394,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">257</span> <span class="phpdocumentor-element-found-in__line">287</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.257" class="phpdocumentor-element-found-in__source" data-line="257" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.287" class="phpdocumentor-element-found-in__source" data-line="287" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Check if this can be considered a list.</p> <p class="phpdocumentor-summary">Check if this can be considered a list.</p>
@ -1437,9 +1437,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">269</span> <span class="phpdocumentor-element-found-in__line">299</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.269" class="phpdocumentor-element-found-in__source" data-line="269" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.299" class="phpdocumentor-element-found-in__source" data-line="299" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Get the current list index.</p> <p class="phpdocumentor-summary">Get the current list index.</p>
@ -1480,9 +1480,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">281</span> <span class="phpdocumentor-element-found-in__line">311</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.281" class="phpdocumentor-element-found-in__source" data-line="281" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.311" class="phpdocumentor-element-found-in__source" data-line="311" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Move the cursor to the next list index.</p> <p class="phpdocumentor-summary">Move the cursor to the next list index.</p>
@ -1515,9 +1515,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">295</span> <span class="phpdocumentor-element-found-in__line">325</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.295" class="phpdocumentor-element-found-in__source" data-line="295" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.325" class="phpdocumentor-element-found-in__source" data-line="325" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Check if the specified index exists and is not empty.</p> <p class="phpdocumentor-summary">Check if the specified index exists and is not empty.</p>
@ -1570,9 +1570,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">311</span> <span class="phpdocumentor-element-found-in__line">341</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.311" class="phpdocumentor-element-found-in__source" data-line="311" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.341" class="phpdocumentor-element-found-in__source" data-line="341" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Get the item from the specified index.</p> <p class="phpdocumentor-summary">Get the item from the specified index.</p>
@ -1642,9 +1642,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">329</span> <span class="phpdocumentor-element-found-in__line">359</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.329" class="phpdocumentor-element-found-in__source" data-line="329" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.359" class="phpdocumentor-element-found-in__source" data-line="359" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Set the item at the specified offset.</p> <p class="phpdocumentor-summary">Set the item at the specified offset.</p>
@ -1725,9 +1725,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">354</span> <span class="phpdocumentor-element-found-in__line">384</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.354" class="phpdocumentor-element-found-in__source" data-line="354" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.384" class="phpdocumentor-element-found-in__source" data-line="384" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Unset the item at the specified index.</p> <p class="phpdocumentor-summary">Unset the item at the specified index.</p>
@ -1789,9 +1789,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">368</span> <span class="phpdocumentor-element-found-in__line">398</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.368" class="phpdocumentor-element-found-in__source" data-line="368" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.398" class="phpdocumentor-element-found-in__source" data-line="398" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Pops an item from the end of the list.</p> <p class="phpdocumentor-summary">Pops an item from the end of the list.</p>
@ -1849,9 +1849,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">384</span> <span class="phpdocumentor-element-found-in__line">414</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.384" class="phpdocumentor-element-found-in__source" data-line="384" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.414" class="phpdocumentor-element-found-in__source" data-line="414" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Prepend items at the start of the list.</p> <p class="phpdocumentor-summary">Prepend items at the start of the list.</p>
@ -1913,9 +1913,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">410</span> <span class="phpdocumentor-element-found-in__line">440</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.410" class="phpdocumentor-element-found-in__source" data-line="410" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.440" class="phpdocumentor-element-found-in__source" data-line="440" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Move the cursor to the previous list index.</p> <p class="phpdocumentor-summary">Move the cursor to the previous list index.</p>
@ -1948,9 +1948,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">426</span> <span class="phpdocumentor-element-found-in__line">456</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.426" class="phpdocumentor-element-found-in__source" data-line="426" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.456" class="phpdocumentor-element-found-in__source" data-line="456" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Push an item at the end of the list.</p> <p class="phpdocumentor-summary">Push an item at the end of the list.</p>
@ -2012,9 +2012,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">450</span> <span class="phpdocumentor-element-found-in__line">480</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.450" class="phpdocumentor-element-found-in__source" data-line="450" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.480" class="phpdocumentor-element-found-in__source" data-line="480" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Remove an item from the list.</p> <p class="phpdocumentor-summary">Remove an item from the list.</p>
@ -2076,9 +2076,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">462</span> <span class="phpdocumentor-element-found-in__line">492</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.462" class="phpdocumentor-element-found-in__source" data-line="462" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.492" class="phpdocumentor-element-found-in__source" data-line="492" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Rewind the iterator&#039;s cursor.</p> <p class="phpdocumentor-summary">Rewind the iterator&#039;s cursor.</p>
@ -2111,9 +2111,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">491</span> <span class="phpdocumentor-element-found-in__line">521</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.491" class="phpdocumentor-element-found-in__source" data-line="491" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.521" class="phpdocumentor-element-found-in__source" data-line="521" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Set an item at the specified index.</p> <p class="phpdocumentor-summary">Set an item at the specified index.</p>
@ -2184,9 +2184,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictStack.php"><a href="files/src-datastructures-strictstack.html"><abbr title="src/DataStructures/StrictStack.php">StrictStack.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictStack.php"><a href="files/src-datastructures-strictstack.html"><abbr title="src/DataStructures/StrictStack.php">StrictStack.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">106</span> <span class="phpdocumentor-element-found-in__line">108</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.106" class="phpdocumentor-element-found-in__source" data-line="106" data-modal="source-view" data-src="files/src/DataStructures/StrictStack.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.108" class="phpdocumentor-element-found-in__source" data-line="108" data-modal="source-view" data-src="files/src/DataStructures/StrictStack.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Set the mode of iteration.</p> <p class="phpdocumentor-summary">Set the mode of iteration.</p>
@ -2277,9 +2277,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">560</span> <span class="phpdocumentor-element-found-in__line">590</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.560" class="phpdocumentor-element-found-in__source" data-line="560" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.590" class="phpdocumentor-element-found-in__source" data-line="590" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Shift an item from the beginning of the list.</p> <p class="phpdocumentor-summary">Shift an item from the beginning of the list.</p>
@ -2337,9 +2337,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictStack.php"><a href="files/src-datastructures-strictstack.html"><abbr title="src/DataStructures/StrictStack.php">StrictStack.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictStack.php"><a href="files/src-datastructures-strictstack.html"><abbr title="src/DataStructures/StrictStack.php">StrictStack.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">66</span> <span class="phpdocumentor-element-found-in__line">68</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.66" class="phpdocumentor-element-found-in__source" data-line="66" data-modal="source-view" data-src="files/src/DataStructures/StrictStack.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.68" class="phpdocumentor-element-found-in__source" data-line="68" data-modal="source-view" data-src="files/src/DataStructures/StrictStack.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Add an item to the stack.</p> <p class="phpdocumentor-summary">Add an item to the stack.</p>
@ -2401,9 +2401,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">572</span> <span class="phpdocumentor-element-found-in__line">602</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.572" class="phpdocumentor-element-found-in__source" data-line="572" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.602" class="phpdocumentor-element-found-in__source" data-line="602" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Return array representation of list.</p> <p class="phpdocumentor-summary">Return array representation of list.</p>
@ -2444,9 +2444,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">602</span> <span class="phpdocumentor-element-found-in__line">632</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.602" class="phpdocumentor-element-found-in__source" data-line="602" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.632" class="phpdocumentor-element-found-in__source" data-line="632" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Peek at the item at the end of the list.</p> <p class="phpdocumentor-summary">Peek at the item at the end of the list.</p>
@ -2504,9 +2504,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">584</span> <span class="phpdocumentor-element-found-in__line">614</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.584" class="phpdocumentor-element-found-in__source" data-line="584" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.614" class="phpdocumentor-element-found-in__source" data-line="614" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Turn list into a type-sensitive collection.</p> <p class="phpdocumentor-summary">Turn list into a type-sensitive collection.</p>
@ -2547,9 +2547,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">634</span> <span class="phpdocumentor-element-found-in__line">664</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.634" class="phpdocumentor-element-found-in__source" data-line="634" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.664" class="phpdocumentor-element-found-in__source" data-line="664" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Prepend the list with an item.</p> <p class="phpdocumentor-summary">Prepend the list with an item.</p>
@ -2611,9 +2611,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictStack.php"><a href="files/src-datastructures-strictstack.html"><abbr title="src/DataStructures/StrictStack.php">StrictStack.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictStack.php"><a href="files/src-datastructures-strictstack.html"><abbr title="src/DataStructures/StrictStack.php">StrictStack.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">78</span> <span class="phpdocumentor-element-found-in__line">80</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.78" class="phpdocumentor-element-found-in__source" data-line="78" data-modal="source-view" data-src="files/src/DataStructures/StrictStack.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.80" class="phpdocumentor-element-found-in__source" data-line="80" data-modal="source-view" data-src="files/src/DataStructures/StrictStack.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Unstack an item from the stack.</p> <p class="phpdocumentor-summary">Unstack an item from the stack.</p>
@ -2654,9 +2654,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">654</span> <span class="phpdocumentor-element-found-in__line">684</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.654" class="phpdocumentor-element-found-in__source" data-line="654" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.684" class="phpdocumentor-element-found-in__source" data-line="684" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Check if current cursor position is valid.</p> <p class="phpdocumentor-summary">Check if current cursor position is valid.</p>
@ -2697,9 +2697,9 @@ Possible values are:</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/DataStructures/StrictList.php"><a href="files/src-datastructures-strictlist.html"><abbr title="src/DataStructures/StrictList.php">StrictList.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">505</span> <span class="phpdocumentor-element-found-in__line">535</span>
<a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.505" class="phpdocumentor-element-found-in__source" data-line="505" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a> <a href="classes/OCC-Basics-DataStructures-StrictStack.html#source-view.535" class="phpdocumentor-element-found-in__source" data-line="535" data-modal="source-view" data-src="files/src/DataStructures/StrictList.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Set allowed data types of list items.</p> <p class="phpdocumentor-summary">Set allowed data types of list items.</p>
@ -2914,17 +2914,6 @@ Possible values are:</p>
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -180,9 +180,9 @@
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/ErrorHandlers/ThrowErrorException.php"><a href="files/src-errorhandlers-throwerrorexception.html"><abbr title="src/ErrorHandlers/ThrowErrorException.php">ThrowErrorException.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/ErrorHandlers/ThrowErrorException.php"><a href="files/src-errorhandlers-throwerrorexception.html"><abbr title="src/ErrorHandlers/ThrowErrorException.php">ThrowErrorException.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">39</span> <span class="phpdocumentor-element-found-in__line">41</span>
<a href="classes/OCC-Basics-ErrorHandlers-ThrowErrorException.html#source-view.39" class="phpdocumentor-element-found-in__source" data-line="39" data-modal="source-view" data-src="files/src/ErrorHandlers/ThrowErrorException.php.txt"></a> <a href="classes/OCC-Basics-ErrorHandlers-ThrowErrorException.html#source-view.41" class="phpdocumentor-element-found-in__source" data-line="41" data-modal="source-view" data-src="files/src/ErrorHandlers/ThrowErrorException.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Throws internal errors as exceptions.</p> <p class="phpdocumentor-summary">Throws internal errors as exceptions.</p>
@ -271,9 +271,9 @@
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/ErrorHandlers/ThrowErrorException.php"><a href="files/src-errorhandlers-throwerrorexception.html"><abbr title="src/ErrorHandlers/ThrowErrorException.php">ThrowErrorException.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/ErrorHandlers/ThrowErrorException.php"><a href="files/src-errorhandlers-throwerrorexception.html"><abbr title="src/ErrorHandlers/ThrowErrorException.php">ThrowErrorException.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">53</span> <span class="phpdocumentor-element-found-in__line">55</span>
<a href="classes/OCC-Basics-ErrorHandlers-ThrowErrorException.html#source-view.53" class="phpdocumentor-element-found-in__source" data-line="53" data-modal="source-view" data-src="files/src/ErrorHandlers/ThrowErrorException.php.txt"></a> <a href="classes/OCC-Basics-ErrorHandlers-ThrowErrorException.html#source-view.55" class="phpdocumentor-element-found-in__source" data-line="55" data-modal="source-view" data-src="files/src/ErrorHandlers/ThrowErrorException.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Convert an internal PHP error into an ErrorException.</p> <p class="phpdocumentor-summary">Convert an internal PHP error into an ErrorException.</p>
@ -479,17 +479,6 @@
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -180,9 +180,9 @@
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/ErrorHandlers/TriggerExceptionError.php"><a href="files/src-errorhandlers-triggerexceptionerror.html"><abbr title="src/ErrorHandlers/TriggerExceptionError.php">TriggerExceptionError.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/ErrorHandlers/TriggerExceptionError.php"><a href="files/src-errorhandlers-triggerexceptionerror.html"><abbr title="src/ErrorHandlers/TriggerExceptionError.php">TriggerExceptionError.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">39</span> <span class="phpdocumentor-element-found-in__line">42</span>
<a href="classes/OCC-Basics-ErrorHandlers-TriggerExceptionError.html#source-view.39" class="phpdocumentor-element-found-in__source" data-line="39" data-modal="source-view" data-src="files/src/ErrorHandlers/TriggerExceptionError.php.txt"></a> <a href="classes/OCC-Basics-ErrorHandlers-TriggerExceptionError.html#source-view.42" class="phpdocumentor-element-found-in__source" data-line="42" data-modal="source-view" data-src="files/src/ErrorHandlers/TriggerExceptionError.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Triggers errors for uncaught exceptions.</p> <p class="phpdocumentor-summary">Triggers errors for uncaught exceptions.</p>
@ -271,9 +271,9 @@ converts it into an internal PHP error of severity <code class="prettyprint">E_U
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/ErrorHandlers/TriggerExceptionError.php"><a href="files/src-errorhandlers-triggerexceptionerror.html"><abbr title="src/ErrorHandlers/TriggerExceptionError.php">TriggerExceptionError.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/ErrorHandlers/TriggerExceptionError.php"><a href="files/src-errorhandlers-triggerexceptionerror.html"><abbr title="src/ErrorHandlers/TriggerExceptionError.php">TriggerExceptionError.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">48</span> <span class="phpdocumentor-element-found-in__line">51</span>
<a href="classes/OCC-Basics-ErrorHandlers-TriggerExceptionError.html#source-view.48" class="phpdocumentor-element-found-in__source" data-line="48" data-modal="source-view" data-src="files/src/ErrorHandlers/TriggerExceptionError.php.txt"></a> <a href="classes/OCC-Basics-ErrorHandlers-TriggerExceptionError.html#source-view.51" class="phpdocumentor-element-found-in__source" data-line="51" data-modal="source-view" data-src="files/src/ErrorHandlers/TriggerExceptionError.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Convert an uncaught exception into an PHP error.</p> <p class="phpdocumentor-summary">Convert an uncaught exception into an PHP error.</p>
@ -427,17 +427,6 @@ converts it into an internal PHP error of severity <code class="prettyprint">E_U
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -164,9 +164,9 @@
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/Interfaces/ArrayAccessTrait.php"><a href="files/src-interfaces-arrayaccesstrait.html"><abbr title="src/Interfaces/ArrayAccessTrait.php">ArrayAccessTrait.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/Interfaces/ArrayAccessTrait.php"><a href="files/src-interfaces-arrayaccesstrait.html"><abbr title="src/Interfaces/ArrayAccessTrait.php">ArrayAccessTrait.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">42</span> <span class="phpdocumentor-element-found-in__line">44</span>
<a href="classes/OCC-Basics-Interfaces-ArrayAccessTrait.html#source-view.42" class="phpdocumentor-element-found-in__source" data-line="42" data-modal="source-view" data-src="files/src/Interfaces/ArrayAccessTrait.php.txt"></a> <a href="classes/OCC-Basics-Interfaces-ArrayAccessTrait.html#source-view.44" class="phpdocumentor-element-found-in__source" data-line="44" data-modal="source-view" data-src="files/src/Interfaces/ArrayAccessTrait.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">A generic implementation of the ArrayAccess interface.</p> <p class="phpdocumentor-summary">A generic implementation of the ArrayAccess interface.</p>
@ -281,9 +281,9 @@
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/Interfaces/ArrayAccessTrait.php"><a href="files/src-interfaces-arrayaccesstrait.html"><abbr title="src/Interfaces/ArrayAccessTrait.php">ArrayAccessTrait.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/Interfaces/ArrayAccessTrait.php"><a href="files/src-interfaces-arrayaccesstrait.html"><abbr title="src/Interfaces/ArrayAccessTrait.php">ArrayAccessTrait.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">62</span> <span class="phpdocumentor-element-found-in__line">64</span>
<a href="classes/OCC-Basics-Interfaces-ArrayAccessTrait.html#source-view.62" class="phpdocumentor-element-found-in__source" data-line="62" data-modal="source-view" data-src="files/src/Interfaces/ArrayAccessTrait.php.txt"></a> <a href="classes/OCC-Basics-Interfaces-ArrayAccessTrait.html#source-view.64" class="phpdocumentor-element-found-in__source" data-line="64" data-modal="source-view" data-src="files/src/Interfaces/ArrayAccessTrait.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Check if the specified offset exists.</p> <p class="phpdocumentor-summary">Check if the specified offset exists.</p>
@ -336,9 +336,9 @@
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/Interfaces/ArrayAccessTrait.php"><a href="files/src-interfaces-arrayaccesstrait.html"><abbr title="src/Interfaces/ArrayAccessTrait.php">ArrayAccessTrait.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/Interfaces/ArrayAccessTrait.php"><a href="files/src-interfaces-arrayaccesstrait.html"><abbr title="src/Interfaces/ArrayAccessTrait.php">ArrayAccessTrait.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">76</span> <span class="phpdocumentor-element-found-in__line">78</span>
<a href="classes/OCC-Basics-Interfaces-ArrayAccessTrait.html#source-view.76" class="phpdocumentor-element-found-in__source" data-line="76" data-modal="source-view" data-src="files/src/Interfaces/ArrayAccessTrait.php.txt"></a> <a href="classes/OCC-Basics-Interfaces-ArrayAccessTrait.html#source-view.78" class="phpdocumentor-element-found-in__source" data-line="78" data-modal="source-view" data-src="files/src/Interfaces/ArrayAccessTrait.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Retrieve data at the specified offset.</p> <p class="phpdocumentor-summary">Retrieve data at the specified offset.</p>
@ -391,9 +391,9 @@
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/Interfaces/ArrayAccessTrait.php"><a href="files/src-interfaces-arrayaccesstrait.html"><abbr title="src/Interfaces/ArrayAccessTrait.php">ArrayAccessTrait.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/Interfaces/ArrayAccessTrait.php"><a href="files/src-interfaces-arrayaccesstrait.html"><abbr title="src/Interfaces/ArrayAccessTrait.php">ArrayAccessTrait.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">91</span> <span class="phpdocumentor-element-found-in__line">93</span>
<a href="classes/OCC-Basics-Interfaces-ArrayAccessTrait.html#source-view.91" class="phpdocumentor-element-found-in__source" data-line="91" data-modal="source-view" data-src="files/src/Interfaces/ArrayAccessTrait.php.txt"></a> <a href="classes/OCC-Basics-Interfaces-ArrayAccessTrait.html#source-view.93" class="phpdocumentor-element-found-in__source" data-line="93" data-modal="source-view" data-src="files/src/Interfaces/ArrayAccessTrait.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Assign a value to the specified offset.</p> <p class="phpdocumentor-summary">Assign a value to the specified offset.</p>
@ -447,9 +447,9 @@
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/Interfaces/ArrayAccessTrait.php"><a href="files/src-interfaces-arrayaccesstrait.html"><abbr title="src/Interfaces/ArrayAccessTrait.php">ArrayAccessTrait.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/Interfaces/ArrayAccessTrait.php"><a href="files/src-interfaces-arrayaccesstrait.html"><abbr title="src/Interfaces/ArrayAccessTrait.php">ArrayAccessTrait.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">109</span> <span class="phpdocumentor-element-found-in__line">111</span>
<a href="classes/OCC-Basics-Interfaces-ArrayAccessTrait.html#source-view.109" class="phpdocumentor-element-found-in__source" data-line="109" data-modal="source-view" data-src="files/src/Interfaces/ArrayAccessTrait.php.txt"></a> <a href="classes/OCC-Basics-Interfaces-ArrayAccessTrait.html#source-view.111" class="phpdocumentor-element-found-in__source" data-line="111" data-modal="source-view" data-src="files/src/Interfaces/ArrayAccessTrait.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Unset the specified offset.</p> <p class="phpdocumentor-summary">Unset the specified offset.</p>
@ -606,17 +606,6 @@
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -164,9 +164,9 @@
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/Interfaces/CountableTrait.php"><a href="files/src-interfaces-countabletrait.html"><abbr title="src/Interfaces/CountableTrait.php">CountableTrait.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/Interfaces/CountableTrait.php"><a href="files/src-interfaces-countabletrait.html"><abbr title="src/Interfaces/CountableTrait.php">CountableTrait.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">42</span> <span class="phpdocumentor-element-found-in__line">44</span>
<a href="classes/OCC-Basics-Interfaces-CountableTrait.html#source-view.42" class="phpdocumentor-element-found-in__source" data-line="42" data-modal="source-view" data-src="files/src/Interfaces/CountableTrait.php.txt"></a> <a href="classes/OCC-Basics-Interfaces-CountableTrait.html#source-view.44" class="phpdocumentor-element-found-in__source" data-line="44" data-modal="source-view" data-src="files/src/Interfaces/CountableTrait.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">A generic implementation of the Countable interface.</p> <p class="phpdocumentor-summary">A generic implementation of the Countable interface.</p>
@ -260,9 +260,9 @@
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/Interfaces/CountableTrait.php"><a href="files/src-interfaces-countabletrait.html"><abbr title="src/Interfaces/CountableTrait.php">CountableTrait.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/Interfaces/CountableTrait.php"><a href="files/src-interfaces-countabletrait.html"><abbr title="src/Interfaces/CountableTrait.php">CountableTrait.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">60</span> <span class="phpdocumentor-element-found-in__line">62</span>
<a href="classes/OCC-Basics-Interfaces-CountableTrait.html#source-view.60" class="phpdocumentor-element-found-in__source" data-line="60" data-modal="source-view" data-src="files/src/Interfaces/CountableTrait.php.txt"></a> <a href="classes/OCC-Basics-Interfaces-CountableTrait.html#source-view.62" class="phpdocumentor-element-found-in__source" data-line="62" data-modal="source-view" data-src="files/src/Interfaces/CountableTrait.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Count the data items.</p> <p class="phpdocumentor-summary">Count the data items.</p>
@ -412,17 +412,6 @@
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -412,17 +412,6 @@
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -164,9 +164,9 @@
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/Interfaces/IteratorTrait.php"><a href="files/src-interfaces-iteratortrait.html"><abbr title="src/Interfaces/IteratorTrait.php">IteratorTrait.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/Interfaces/IteratorTrait.php"><a href="files/src-interfaces-iteratortrait.html"><abbr title="src/Interfaces/IteratorTrait.php">IteratorTrait.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">42</span> <span class="phpdocumentor-element-found-in__line">49</span>
<a href="classes/OCC-Basics-Interfaces-IteratorTrait.html#source-view.42" class="phpdocumentor-element-found-in__source" data-line="42" data-modal="source-view" data-src="files/src/Interfaces/IteratorTrait.php.txt"></a> <a href="classes/OCC-Basics-Interfaces-IteratorTrait.html#source-view.49" class="phpdocumentor-element-found-in__source" data-line="49" data-modal="source-view" data-src="files/src/Interfaces/IteratorTrait.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">A generic implementation of the Iterator interface.</p> <p class="phpdocumentor-summary">A generic implementation of the Iterator interface.</p>
@ -295,9 +295,9 @@
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/Interfaces/IteratorTrait.php"><a href="files/src-interfaces-iteratortrait.html"><abbr title="src/Interfaces/IteratorTrait.php">IteratorTrait.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/Interfaces/IteratorTrait.php"><a href="files/src-interfaces-iteratortrait.html"><abbr title="src/Interfaces/IteratorTrait.php">IteratorTrait.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">60</span> <span class="phpdocumentor-element-found-in__line">67</span>
<a href="classes/OCC-Basics-Interfaces-IteratorTrait.html#source-view.60" class="phpdocumentor-element-found-in__source" data-line="60" data-modal="source-view" data-src="files/src/Interfaces/IteratorTrait.php.txt"></a> <a href="classes/OCC-Basics-Interfaces-IteratorTrait.html#source-view.67" class="phpdocumentor-element-found-in__source" data-line="67" data-modal="source-view" data-src="files/src/Interfaces/IteratorTrait.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Return the current item.</p> <p class="phpdocumentor-summary">Return the current item.</p>
@ -338,9 +338,9 @@
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/Interfaces/IteratorTrait.php"><a href="files/src-interfaces-iteratortrait.html"><abbr title="src/Interfaces/IteratorTrait.php">IteratorTrait.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/Interfaces/IteratorTrait.php"><a href="files/src-interfaces-iteratortrait.html"><abbr title="src/Interfaces/IteratorTrait.php">IteratorTrait.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">76</span> <span class="phpdocumentor-element-found-in__line">83</span>
<a href="classes/OCC-Basics-Interfaces-IteratorTrait.html#source-view.76" class="phpdocumentor-element-found-in__source" data-line="76" data-modal="source-view" data-src="files/src/Interfaces/IteratorTrait.php.txt"></a> <a href="classes/OCC-Basics-Interfaces-IteratorTrait.html#source-view.83" class="phpdocumentor-element-found-in__source" data-line="83" data-modal="source-view" data-src="files/src/Interfaces/IteratorTrait.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Return the current key.</p> <p class="phpdocumentor-summary">Return the current key.</p>
@ -381,9 +381,9 @@
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/Interfaces/IteratorTrait.php"><a href="files/src-interfaces-iteratortrait.html"><abbr title="src/Interfaces/IteratorTrait.php">IteratorTrait.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/Interfaces/IteratorTrait.php"><a href="files/src-interfaces-iteratortrait.html"><abbr title="src/Interfaces/IteratorTrait.php">IteratorTrait.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">88</span> <span class="phpdocumentor-element-found-in__line">95</span>
<a href="classes/OCC-Basics-Interfaces-IteratorTrait.html#source-view.88" class="phpdocumentor-element-found-in__source" data-line="88" data-modal="source-view" data-src="files/src/Interfaces/IteratorTrait.php.txt"></a> <a href="classes/OCC-Basics-Interfaces-IteratorTrait.html#source-view.95" class="phpdocumentor-element-found-in__source" data-line="95" data-modal="source-view" data-src="files/src/Interfaces/IteratorTrait.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Move forward to next item.</p> <p class="phpdocumentor-summary">Move forward to next item.</p>
@ -416,9 +416,9 @@
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/Interfaces/IteratorTrait.php"><a href="files/src-interfaces-iteratortrait.html"><abbr title="src/Interfaces/IteratorTrait.php">IteratorTrait.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/Interfaces/IteratorTrait.php"><a href="files/src-interfaces-iteratortrait.html"><abbr title="src/Interfaces/IteratorTrait.php">IteratorTrait.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">100</span> <span class="phpdocumentor-element-found-in__line">107</span>
<a href="classes/OCC-Basics-Interfaces-IteratorTrait.html#source-view.100" class="phpdocumentor-element-found-in__source" data-line="100" data-modal="source-view" data-src="files/src/Interfaces/IteratorTrait.php.txt"></a> <a href="classes/OCC-Basics-Interfaces-IteratorTrait.html#source-view.107" class="phpdocumentor-element-found-in__source" data-line="107" data-modal="source-view" data-src="files/src/Interfaces/IteratorTrait.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Move back to previous item.</p> <p class="phpdocumentor-summary">Move back to previous item.</p>
@ -451,9 +451,9 @@
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/Interfaces/IteratorTrait.php"><a href="files/src-interfaces-iteratortrait.html"><abbr title="src/Interfaces/IteratorTrait.php">IteratorTrait.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/Interfaces/IteratorTrait.php"><a href="files/src-interfaces-iteratortrait.html"><abbr title="src/Interfaces/IteratorTrait.php">IteratorTrait.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">112</span> <span class="phpdocumentor-element-found-in__line">119</span>
<a href="classes/OCC-Basics-Interfaces-IteratorTrait.html#source-view.112" class="phpdocumentor-element-found-in__source" data-line="112" data-modal="source-view" data-src="files/src/Interfaces/IteratorTrait.php.txt"></a> <a href="classes/OCC-Basics-Interfaces-IteratorTrait.html#source-view.119" class="phpdocumentor-element-found-in__source" data-line="119" data-modal="source-view" data-src="files/src/Interfaces/IteratorTrait.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Rewind the iterator to the first item.</p> <p class="phpdocumentor-summary">Rewind the iterator to the first item.</p>
@ -486,9 +486,9 @@
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/Interfaces/IteratorTrait.php"><a href="files/src-interfaces-iteratortrait.html"><abbr title="src/Interfaces/IteratorTrait.php">IteratorTrait.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/Interfaces/IteratorTrait.php"><a href="files/src-interfaces-iteratortrait.html"><abbr title="src/Interfaces/IteratorTrait.php">IteratorTrait.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">124</span> <span class="phpdocumentor-element-found-in__line">131</span>
<a href="classes/OCC-Basics-Interfaces-IteratorTrait.html#source-view.124" class="phpdocumentor-element-found-in__source" data-line="124" data-modal="source-view" data-src="files/src/Interfaces/IteratorTrait.php.txt"></a> <a href="classes/OCC-Basics-Interfaces-IteratorTrait.html#source-view.131" class="phpdocumentor-element-found-in__source" data-line="131" data-modal="source-view" data-src="files/src/Interfaces/IteratorTrait.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Check if current position is valid.</p> <p class="phpdocumentor-summary">Check if current position is valid.</p>
@ -643,17 +643,6 @@
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -164,9 +164,9 @@
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/Traits/Getter.php"><a href="files/src-traits-getter.html"><abbr title="src/Traits/Getter.php">Getter.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/Traits/Getter.php"><a href="files/src-traits-getter.html"><abbr title="src/Traits/Getter.php">Getter.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">43</span> <span class="phpdocumentor-element-found-in__line">49</span>
<a href="classes/OCC-Basics-Traits-Getter.html#source-view.43" class="phpdocumentor-element-found-in__source" data-line="43" data-modal="source-view" data-src="files/src/Traits/Getter.php.txt"></a> <a href="classes/OCC-Basics-Traits-Getter.html#source-view.49" class="phpdocumentor-element-found-in__source" data-line="49" data-modal="source-view" data-src="files/src/Traits/Getter.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Reads data from inaccessible properties by using magic methods.</p> <p class="phpdocumentor-summary">Reads data from inaccessible properties by using magic methods.</p>
@ -266,9 +266,9 @@ a context where it normally would not be accessible.</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/Traits/Getter.php"><a href="files/src-traits-getter.html"><abbr title="src/Traits/Getter.php">Getter.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/Traits/Getter.php"><a href="files/src-traits-getter.html"><abbr title="src/Traits/Getter.php">Getter.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">54</span> <span class="phpdocumentor-element-found-in__line">60</span>
<a href="classes/OCC-Basics-Traits-Getter.html#source-view.54" class="phpdocumentor-element-found-in__source" data-line="54" data-modal="source-view" data-src="files/src/Traits/Getter.php.txt"></a> <a href="classes/OCC-Basics-Traits-Getter.html#source-view.60" class="phpdocumentor-element-found-in__source" data-line="60" data-modal="source-view" data-src="files/src/Traits/Getter.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Read data from an inaccessible property.</p> <p class="phpdocumentor-summary">Read data from an inaccessible property.</p>
@ -336,9 +336,9 @@ a context where it normally would not be accessible.</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/Traits/Getter.php"><a href="files/src-traits-getter.html"><abbr title="src/Traits/Getter.php">Getter.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/Traits/Getter.php"><a href="files/src-traits-getter.html"><abbr title="src/Traits/Getter.php">Getter.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">77</span> <span class="phpdocumentor-element-found-in__line">83</span>
<a href="classes/OCC-Basics-Traits-Getter.html#source-view.77" class="phpdocumentor-element-found-in__source" data-line="77" data-modal="source-view" data-src="files/src/Traits/Getter.php.txt"></a> <a href="classes/OCC-Basics-Traits-Getter.html#source-view.83" class="phpdocumentor-element-found-in__source" data-line="83" data-modal="source-view" data-src="files/src/Traits/Getter.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Check if an inaccessible property is set and not empty.</p> <p class="phpdocumentor-summary">Check if an inaccessible property is set and not empty.</p>
@ -499,17 +499,6 @@ a context where it normally would not be accessible.</p>
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -164,9 +164,9 @@
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/Traits/OverloadingGetter.php"><a href="files/src-traits-overloadinggetter.html"><abbr title="src/Traits/OverloadingGetter.php">OverloadingGetter.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/Traits/OverloadingGetter.php"><a href="files/src-traits-overloadinggetter.html"><abbr title="src/Traits/OverloadingGetter.php">OverloadingGetter.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">37</span> <span class="phpdocumentor-element-found-in__line">39</span>
<a href="classes/OCC-Basics-Traits-OverloadingGetter.html#source-view.37" class="phpdocumentor-element-found-in__source" data-line="37" data-modal="source-view" data-src="files/src/Traits/OverloadingGetter.php.txt"></a> <a href="classes/OCC-Basics-Traits-OverloadingGetter.html#source-view.39" class="phpdocumentor-element-found-in__source" data-line="39" data-modal="source-view" data-src="files/src/Traits/OverloadingGetter.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Overloads a class with readable magic properties.</p> <p class="phpdocumentor-summary">Overloads a class with readable magic properties.</p>
@ -262,9 +262,9 @@ as property names.</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/Traits/OverloadingGetter.php"><a href="files/src-traits-overloadinggetter.html"><abbr title="src/Traits/OverloadingGetter.php">OverloadingGetter.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/Traits/OverloadingGetter.php"><a href="files/src-traits-overloadinggetter.html"><abbr title="src/Traits/OverloadingGetter.php">OverloadingGetter.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">55</span> <span class="phpdocumentor-element-found-in__line">57</span>
<a href="classes/OCC-Basics-Traits-OverloadingGetter.html#source-view.55" class="phpdocumentor-element-found-in__source" data-line="55" data-modal="source-view" data-src="files/src/Traits/OverloadingGetter.php.txt"></a> <a href="classes/OCC-Basics-Traits-OverloadingGetter.html#source-view.57" class="phpdocumentor-element-found-in__source" data-line="57" data-modal="source-view" data-src="files/src/Traits/OverloadingGetter.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Read data from an overloaded property.</p> <p class="phpdocumentor-summary">Read data from an overloaded property.</p>
@ -315,9 +315,9 @@ as property names.</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/Traits/OverloadingGetter.php"><a href="files/src-traits-overloadinggetter.html"><abbr title="src/Traits/OverloadingGetter.php">OverloadingGetter.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/Traits/OverloadingGetter.php"><a href="files/src-traits-overloadinggetter.html"><abbr title="src/Traits/OverloadingGetter.php">OverloadingGetter.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">67</span> <span class="phpdocumentor-element-found-in__line">69</span>
<a href="classes/OCC-Basics-Traits-OverloadingGetter.html#source-view.67" class="phpdocumentor-element-found-in__source" data-line="67" data-modal="source-view" data-src="files/src/Traits/OverloadingGetter.php.txt"></a> <a href="classes/OCC-Basics-Traits-OverloadingGetter.html#source-view.69" class="phpdocumentor-element-found-in__source" data-line="69" data-modal="source-view" data-src="files/src/Traits/OverloadingGetter.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Check if an overloaded property is set and not empty.</p> <p class="phpdocumentor-summary">Check if an overloaded property is set and not empty.</p>
@ -478,17 +478,6 @@ as property names.</p>
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -471,17 +471,6 @@ as property names.</p>
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -164,9 +164,9 @@
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/Traits/Setter.php"><a href="files/src-traits-setter.html"><abbr title="src/Traits/Setter.php">Setter.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/Traits/Setter.php"><a href="files/src-traits-setter.html"><abbr title="src/Traits/Setter.php">Setter.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">43</span> <span class="phpdocumentor-element-found-in__line">48</span>
<a href="classes/OCC-Basics-Traits-Setter.html#source-view.43" class="phpdocumentor-element-found-in__source" data-line="43" data-modal="source-view" data-src="files/src/Traits/Setter.php.txt"></a> <a href="classes/OCC-Basics-Traits-Setter.html#source-view.48" class="phpdocumentor-element-found-in__source" data-line="48" data-modal="source-view" data-src="files/src/Traits/Setter.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Writes data to inaccessible properties by using magic methods.</p> <p class="phpdocumentor-summary">Writes data to inaccessible properties by using magic methods.</p>
@ -266,9 +266,9 @@ to in a context where it normally would not be accessible.</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/Traits/Setter.php"><a href="files/src-traits-setter.html"><abbr title="src/Traits/Setter.php">Setter.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/Traits/Setter.php"><a href="files/src-traits-setter.html"><abbr title="src/Traits/Setter.php">Setter.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">55</span> <span class="phpdocumentor-element-found-in__line">60</span>
<a href="classes/OCC-Basics-Traits-Setter.html#source-view.55" class="phpdocumentor-element-found-in__source" data-line="55" data-modal="source-view" data-src="files/src/Traits/Setter.php.txt"></a> <a href="classes/OCC-Basics-Traits-Setter.html#source-view.60" class="phpdocumentor-element-found-in__source" data-line="60" data-modal="source-view" data-src="files/src/Traits/Setter.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Write data to an inaccessible property.</p> <p class="phpdocumentor-summary">Write data to an inaccessible property.</p>
@ -337,9 +337,9 @@ to in a context where it normally would not be accessible.</p>
<aside class="phpdocumentor-element-found-in"> <aside class="phpdocumentor-element-found-in">
<abbr class="phpdocumentor-element-found-in__file" title="src/Traits/Setter.php"><a href="files/src-traits-setter.html"><abbr title="src/Traits/Setter.php">Setter.php</abbr></a></abbr> <abbr class="phpdocumentor-element-found-in__file" title="src/Traits/Setter.php"><a href="files/src-traits-setter.html"><abbr title="src/Traits/Setter.php">Setter.php</abbr></a></abbr>
: :
<span class="phpdocumentor-element-found-in__line">78</span> <span class="phpdocumentor-element-found-in__line">83</span>
<a href="classes/OCC-Basics-Traits-Setter.html#source-view.78" class="phpdocumentor-element-found-in__source" data-line="78" data-modal="source-view" data-src="files/src/Traits/Setter.php.txt"></a> <a href="classes/OCC-Basics-Traits-Setter.html#source-view.83" class="phpdocumentor-element-found-in__source" data-line="83" data-modal="source-view" data-src="files/src/Traits/Setter.php.txt"></a>
</aside> </aside>
<p class="phpdocumentor-summary">Unset an inaccessible property.</p> <p class="phpdocumentor-summary">Unset an inaccessible property.</p>
@ -492,17 +492,6 @@ to in a context where it normally would not be accessible.</p>
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -536,17 +536,6 @@ as <code class="prettyprint">private</code> to prevent direct instantiation of t
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -300,7 +300,7 @@ aside.phpdocumentor-sidebar
} }
aside.phpdocumentor-sidebar aside.phpdocumentor-sidebar
section.-index section.-indices
{ {
order: 5; order: 5;
} }

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -321,17 +321,6 @@ along with this program. If not, see <a href="http://www.gnu.org/licenses/">http
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -321,17 +321,6 @@ along with this program. If not, see <a href="http://www.gnu.org/licenses/">http
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -321,17 +321,6 @@ along with this program. If not, see <a href="http://www.gnu.org/licenses/">http
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -321,17 +321,6 @@ along with this program. If not, see <a href="http://www.gnu.org/licenses/">http
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -321,17 +321,6 @@ along with this program. If not, see <a href="http://www.gnu.org/licenses/">http
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -321,17 +321,6 @@ along with this program. If not, see <a href="http://www.gnu.org/licenses/">http
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -321,17 +321,6 @@ along with this program. If not, see <a href="http://www.gnu.org/licenses/">http
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -321,17 +321,6 @@ along with this program. If not, see <a href="http://www.gnu.org/licenses/">http
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -321,17 +321,6 @@ along with this program. If not, see <a href="http://www.gnu.org/licenses/">http
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -321,17 +321,6 @@ along with this program. If not, see <a href="http://www.gnu.org/licenses/">http
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -321,17 +321,6 @@ along with this program. If not, see <a href="http://www.gnu.org/licenses/">http
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -321,17 +321,6 @@ along with this program. If not, see <a href="http://www.gnu.org/licenses/">http
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -321,17 +321,6 @@ along with this program. If not, see <a href="http://www.gnu.org/licenses/">http
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -321,17 +321,6 @@ along with this program. If not, see <a href="http://www.gnu.org/licenses/">http
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -321,17 +321,6 @@ along with this program. If not, see <a href="http://www.gnu.org/licenses/">http
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -32,6 +32,34 @@ use OCC\Basics\Interfaces\CountableTrait;
use OCC\Basics\Traits\Getter; use OCC\Basics\Traits\Getter;
use Serializable; use Serializable;
use function array_is_list;
use function array_map;
use function array_sum;
use function count;
use function function_exists;
use function get_debug_type;
use function is_a;
use function is_array;
use function is_bool;
use function is_callable;
use function is_countable;
use function is_double;
use function is_float;
use function is_int;
use function is_integer;
use function is_iterable;
use function is_long;
use function is_null;
use function is_numeric;
use function is_resource;
use function is_scalar;
use function is_string;
use function is_object;
use function ltrim;
use function serialize;
use function sprintf;
use function unserialize;
/** /**
* A type-sensitive, unsorted collection. * A type-sensitive, unsorted collection.
* *

View File

@ -34,6 +34,36 @@ use SplDoublyLinkedList;
use OCC\Basics\Traits\Getter; use OCC\Basics\Traits\Getter;
use Serializable; use Serializable;
use function array_map;
use function array_sum;
use function count;
use function function_exists;
use function get_debug_type;
use function in_array;
use function is_a;
use function is_array;
use function is_bool;
use function is_callable;
use function is_countable;
use function is_double;
use function is_float;
use function is_int;
use function is_integer;
use function is_iterable;
use function is_long;
use function is_null;
use function is_numeric;
use function is_resource;
use function is_scalar;
use function is_string;
use function is_object;
use function iterator_to_array;
use function ltrim;
use function range;
use function serialize;
use function sprintf;
use function unserialize;
/** /**
* A type-sensitive, taversable list. * A type-sensitive, taversable list.
* *

View File

@ -31,6 +31,8 @@ use RangeException;
use RuntimeException; use RuntimeException;
use Serializable; use Serializable;
use function sprintf;
/** /**
* A type-sensitive, taversable queue (FIFO). * A type-sensitive, taversable queue (FIFO).
* *

View File

@ -31,6 +31,8 @@ use RangeException;
use RuntimeException; use RuntimeException;
use Serializable; use Serializable;
use function sprintf;
/** /**
* A type-sensitive, taversable stack (LIFO). * A type-sensitive, taversable stack (LIFO).
* *

View File

@ -25,6 +25,8 @@ namespace OCC\Basics\ErrorHandlers;
use ErrorException; use ErrorException;
use function error_reporting;
/** /**
* Throws internal errors as exceptions. * Throws internal errors as exceptions.
* *

View File

@ -25,6 +25,9 @@ namespace OCC\Basics\ErrorHandlers;
use Throwable; use Throwable;
use function sprintf;
use function trigger_error;
/** /**
* Triggers errors for uncaught exceptions. * Triggers errors for uncaught exceptions.
* *

View File

@ -25,6 +25,8 @@ namespace OCC\Basics\Interfaces;
use ArrayAccess; use ArrayAccess;
use function is_null;
/** /**
* A generic implementation of the ArrayAccess interface. * A generic implementation of the ArrayAccess interface.
* *

View File

@ -25,6 +25,8 @@ namespace OCC\Basics\Interfaces;
use Countable; use Countable;
use function count;
/** /**
* A generic implementation of the Countable interface. * A generic implementation of the Countable interface.
* *

View File

@ -25,6 +25,13 @@ namespace OCC\Basics\Interfaces;
use Iterator; use Iterator;
use function current;
use function is_null;
use function key;
use function next;
use function prev;
use function reset;
/** /**
* A generic implementation of the Iterator interface. * A generic implementation of the Iterator interface.
* *

View File

@ -25,6 +25,12 @@ namespace OCC\Basics\Traits;
use InvalidArgumentException; use InvalidArgumentException;
use function boolval;
use function method_exists;
use function property_exists;
use function sprintf;
use function ucfirst;
/** /**
* Reads data from inaccessible properties by using magic methods. * Reads data from inaccessible properties by using magic methods.
* *

View File

@ -23,6 +23,8 @@ declare(strict_types=1);
namespace OCC\Basics\Traits; namespace OCC\Basics\Traits;
use function boolval;
/** /**
* Overloads a class with readable magic properties. * Overloads a class with readable magic properties.
* *

View File

@ -25,6 +25,11 @@ namespace OCC\Basics\Traits;
use InvalidArgumentException; use InvalidArgumentException;
use function method_exists;
use function property_exists;
use function sprintf;
use function ucfirst;
/** /**
* Writes data to inaccessible properties by using magic methods. * Writes data to inaccessible properties by using magic methods.
* *

View File

@ -130,8 +130,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -153,17 +153,6 @@
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -143,8 +143,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -153,44 +153,31 @@
<div class="section" id="changelog"> <div class="section" id="changelog">
<h1>Changelog</h1> <h1>Changelog</h1>
<div class="contents"><ul class="phpdocumentor-list"><li class="toc-item"><a href="guides/changelog.html#v2-0-0">v2.0.0</a></li><li class="toc-item"><a href="guides/changelog.html#v1-1-0">v1.1.0</a></li><li class="toc-item"><a href="guides/changelog.html#v1-0-1">v1.0.1</a></li><li class="toc-item"><a href="guides/changelog.html#v1-0-0">v1.0.0</a></li></ul></div>
<ul>
<li><a href="guides/changelog.html#v2-0-0">v2.0.0</a>
</li>
<li><a href="guides/changelog.html#v1-1-0">v1.1.0</a>
</li>
<li><a href="guides/changelog.html#v1-0-1">v1.0.1</a>
</li>
<li><a href="guides/changelog.html#v1-0-0">v1.0.0</a>
</li>
</ul>
<div class="section" id="v2-0-0"> <div class="section" id="v2-0-0">
<h2>v2.0.0</h2> <h2>v2.0.0</h2>
<a id="v2-0-0"></a>
<p><strong>Breaking Changes:</strong></p> <p><strong>Breaking Changes:</strong></p>
<ul> <ul>
<li>Raised minimum PHP version from 8.0 to 8.1</li> <li>Raised minimum PHP version from 8.0 to 8.1 in order to use <a href="https://www.php.net/releases/8.1/">new features</a> like
<a href="https://www.php.net/array_is_list">array_is_list()</a> and the spread operator on string-keyed arrays</li>
<li>Renamed traits for <a href="namespaces/occ-basics-interfaces.html"><abbr title="\OCC\Basics\Interfaces">Interfaces</abbr></a> <li><p><a href="namespaces/occ-basics-interfaces.html"><abbr title="\OCC\Basics\Interfaces">Interfaces</abbr></a>
and moved to different namespace</li> traits renamed and moved to different namespace</p><pre><code class="language-">OCC\Basics\InterfaceTraits\ArrayAccess -&gt; OCC\Basics\Interfaces\ArrayAccessTrait
OCC\Basics\InterfaceTraits\Countable -&gt; OCC\Basics\Interfaces\CountableTrait
OCC\Basics\InterfaceTraits\IteratorAggregate -&gt; OCC\Basics\Interfaces\IteratorAggregateTrait
OCC\Basics\InterfaceTraits\Iterator -&gt; OCC\Basics\Interfaces\IteratorTrait</code></pre></li>
<li><p>Renamed internal methods for <a href="classes/OCC-Basics-Traits-Getter.html"><abbr title="\OCC\Basics\Traits\Getter">Getter</abbr></a> <li><p>Renamed internal methods for <a href="classes/OCC-Basics-Traits-Getter.html"><abbr title="\OCC\Basics\Traits\Getter">Getter</abbr></a>
and <a href="classes/OCC-Basics-Traits-Setter.html"><abbr title="\OCC\Basics\Traits\Setter">Setter</abbr></a> and <a href="classes/OCC-Basics-Traits-Setter.html"><abbr title="\OCC\Basics\Traits\Setter">Setter</abbr></a>
to avoid to avoid
confusion with regular class method</p><pre><code class="language-php">// old methods confusion with regular class methods</p><pre><code class="language-php">// old methods
protected function magicGet{PascalCasePropertyName}(): mixed function magicGet{PascalCasePropertyName}(): mixed
protected function magicSet{PascalCasePropertyName}(mixed $value): void</code></pre><pre><code class="language-php">// new methods function magicSet{PascalCasePropertyName}(mixed $value): void</code></pre><pre><code class="language-php">// new methods
protected function _magicGet{PascalCasePropertyName}(): mixed function _magicGet{PascalCasePropertyName}(): mixed
protected function _magicSet{PascalCasePropertyName}(mixed $value): void</code></pre></li> function _magicSet{PascalCasePropertyName}(mixed $value): void</code></pre></li>
</ul> </ul>
@ -212,7 +199,7 @@ protected function _magicSet{PascalCasePropertyName}(mixed $value): void</code><
<li>Extended API for all datastructures</li> <li>Extended API for all datastructures</li>
<li>Extended <a href="https://opencultureconsulting.github.io/basics/">documentation</a></li> <li>Extended <a href="https://opencultureconsulting.github.io/php-basics/">documentation</a></li>
</ul> </ul>
@ -221,7 +208,6 @@ protected function _magicSet{PascalCasePropertyName}(mixed $value): void</code><
<div class="section" id="v1-1-0"> <div class="section" id="v1-1-0">
<h2>v1.1.0</h2> <h2>v1.1.0</h2>
<a id="v1-1-0"></a>
<p><strong>Breaking Changes:</strong></p> <p><strong>Breaking Changes:</strong></p>
@ -239,7 +225,6 @@ public function __construct(array $allowedTypes = [])</code></pre></li>
<div class="section" id="v1-0-1"> <div class="section" id="v1-0-1">
<h2>v1.0.1</h2> <h2>v1.0.1</h2>
<a id="v1-0-1"></a>
<p><strong>New Features:</strong></p> <p><strong>New Features:</strong></p>
@ -254,7 +239,6 @@ public function __construct(array $allowedTypes = [])</code></pre></li>
<div class="section" id="v1-0-0"> <div class="section" id="v1-0-0">
<h2>v1.0.0</h2> <h2>v1.0.0</h2>
<a id="v1-0-0"></a>
<p><strong>Initial Release</strong></p> <p><strong>Initial Release</strong></p>
</div> </div>
@ -265,17 +249,6 @@ public function __construct(array $allowedTypes = [])</code></pre></li>
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

212
doc/guides/cheatsheet.html Normal file
View File

@ -0,0 +1,212 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>PHP Basics</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<base href="../">
<link rel="icon" href="images/favicon.ico"/>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/base.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@100;200;300;400;600;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/template.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0/css/all.min.css" integrity="sha256-ybRkN9dBjhcS2qrW1z+hfCxq+1aBdwyQM5wlQoQVt/0=" crossorigin="anonymous" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/prismjs@1.23.0/themes/prism-okaidia.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/prismjs@1.23.0/plugins/line-numbers/prism-line-numbers.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/prismjs@1.23.0/plugins/line-highlight/prism-line-highlight.css">
<script src="https://cdn.jsdelivr.net/npm/fuse.js@3.4.6"></script>
<script src="https://cdn.jsdelivr.net/npm/css-vars-ponyfill@2"></script>
<script src="js/template.js"></script>
<script src="js/search.js"></script>
<script defer src="js/searchIndex.js"></script>
</head>
<body id="top">
<header class="phpdocumentor-header phpdocumentor-section">
<h1 class="phpdocumentor-title"><a href="" class="phpdocumentor-title__link">PHP Basics</a></h1>
<input class="phpdocumentor-header__menu-button" type="checkbox" id="menu-button" name="menu-button" />
<label class="phpdocumentor-header__menu-icon" for="menu-button">
<i class="fas fa-bars"></i>
</label>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<nav class="phpdocumentor-topnav">
<ul class="phpdocumentor-topnav__menu">
<li class="phpdocumentor-topnav__menu-item -menu">
<a href="https://packagist.org/packages/opencultureconsulting/basics">
<span>
<i class="fab fa-php"></i>
</span>
</a>
</li>
<li class="phpdocumentor-topnav__menu-item -menu">
<a href="https://github.com/opencultureconsulting/php-basics">
<span>
<i class="fab fa-github"></i>
</span>
</a>
</li>
</ul>
</nav>
</header>
<main class="phpdocumentor">
<div class="phpdocumentor-section">
<input class="phpdocumentor-sidebar__menu-button" type="checkbox" id="sidebar-button" name="sidebar-button" />
<label class="phpdocumentor-sidebar__menu-icon" for="sidebar-button">
Menu
</label>
<aside class="phpdocumentor-column -three phpdocumentor-sidebar">
<section class="phpdocumentor-sidebar__category -documentation">
<h2 class="phpdocumentor-sidebar__category-header">Documentation</h2>
<h4 class="phpdocumentor-sidebar__root-namespace">
<a href="guides/overview/index.html#overview" class="">Overview</a>
</h4>
<h4 class="phpdocumentor-sidebar__root-namespace">
<a href="guides/usage/index.html#user-guide" class="">User Guide</a>
</h4>
<ul class="phpdocumentor-list">
<li>
<a href="guides/usage/requirements.html#requirements" class="">Requirements</a>
</li>
<li>
<a href="guides/usage/installation.html#installation" class="">Installation</a>
</li>
</ul>
<h4 class="phpdocumentor-sidebar__root-namespace">
<a href="guides/changelog.html#changelog" class="">Changelog</a>
</h4>
</section>
<section class="phpdocumentor-sidebar__category -namespaces">
<h2 class="phpdocumentor-sidebar__category-header">Namespaces</h2>
<h4 class="phpdocumentor-sidebar__root-namespace">
<a href="namespaces/occ.html" class="">OCC</a>
</h4>
<ul class="phpdocumentor-list">
<li>
<a href="namespaces/occ-basics.html" class="">Basics</a>
</li>
</ul>
</section>
<section class="phpdocumentor-sidebar__category -packages">
<h2 class="phpdocumentor-sidebar__category-header">Packages</h2>
<h4 class="phpdocumentor-sidebar__root-namespace">
<a href="packages/Basics.html" class="">Basics</a>
</h4>
<ul class="phpdocumentor-list">
<li>
<a href="packages/Basics-DataStructures.html" class="">DataStructures</a>
</li>
<li>
<a href="packages/Basics-ErrorHandlers.html" class="">ErrorHandlers</a>
</li>
<li>
<a href="packages/Basics-Interfaces.html" class="">Interfaces</a>
</li>
<li>
<a href="packages/Basics-Traits.html" class="">Traits</a>
</li>
</ul>
</section>
<section class="phpdocumentor-sidebar__category -reports">
<h2 class="phpdocumentor-sidebar__category-header">Reports</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/deprecated.html">Deprecated</a></h3>
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/errors.html">Errors</a></h3>
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section>
<section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section>
</aside>
<div class="phpdocumentor-column -nine phpdocumentor-content">
<div class="section" id="helpful-reminders">
<h1>Helpful Reminders</h1>
<div class="phpdocumentor-admonition ">
<article>
<p>Plain Box</p>
</article>
</div>
<div class="phpdocumentor-admonition caution">
<svg class="phpdocumentor-admonition__icon" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"></path></svg>
<article>
<p>Exclamation Mark</p>
</article>
</div>
<div class="phpdocumentor-admonition hint">
<svg class="phpdocumentor-admonition__icon" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M18.364 5.636l-3.536 3.536m0 5.656l3.536 3.536M9.172 9.172L5.636 5.636m3.536 9.192l-3.536 3.536M21 12a9 9 0 11-18 0 9 9 0 0118 0zm-5 0a4 4 0 11-8 0 4 4 0 018 0z"></path></svg>
<article>
<p>Lifebuoy</p>
</article>
</div>
<div class="phpdocumentor-admonition note">
<svg class="phpdocumentor-admonition__icon" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 8h10M7 12h4m1 8l-4-4H5a2 2 0 01-2-2V6a2 2 0 012-2h14a2 2 0 012 2v8a2 2 0 01-2 2h-3l-4 4z"></path></svg>
<article>
<p>Speech Bubble</p>
</article>
</div>
<pre><code class="language-php">// Code Block</code></pre>
<div class="contents"><ul class="phpdocumentor-list"></ul></div>
</div>
</div>
<section data-search-results class="phpdocumentor-search-results phpdocumentor-search-results--hidden">
<section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header>
<section class="phpdocumentor-search-results__body">
<ul class="phpdocumentor-search-results__entries"></ul>
</section>
</section>
</section>
</div>
<a href="guides/cheatsheet.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
</main>
<script>
cssVars({});
</script>
<script src="https://cdn.jsdelivr.net/npm/prismjs@1.23.0/prism.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/prismjs@1.23.0/plugins/autoloader/prism-autoloader.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/prismjs@1.23.0/plugins/line-numbers/prism-line-numbers.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/prismjs@1.23.0/plugins/line-highlight/prism-line-highlight.min.js"></script>
</body>
</html>

View File

@ -144,8 +144,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -162,17 +162,6 @@
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -143,8 +143,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -160,17 +160,6 @@
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -143,8 +143,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -155,9 +155,21 @@
<div class="toc"> <div class="toc">
<ul class="phpdocumentor-list"> <ul class="phpdocumentor-list">
<li class="toc-item"><a href="guides/usage/requirements.html#requirements">Requirements</a></li> <li class="toc-item"><a href="guides/usage/requirements.html#requirements">Requirements</a> <ul class="section-level-1">
<li class="toc-item"><a href="guides/usage/requirements.html#environment">Environment</a></li>
<li class="toc-item"><a href="guides/usage/installation.html#installation">Installation</a></li> <li class="toc-item"><a href="guides/usage/requirements.html#dependencies">Dependencies</a></li>
</ul></li>
<li class="toc-item"><a href="guides/usage/installation.html#installation">Installation</a> <ul class="section-level-1">
<li class="toc-item"><a href="guides/usage/installation.html#composer">Composer</a></li>
<li class="toc-item"><a href="guides/usage/installation.html#git">Git</a></li>
<li class="toc-item"><a href="guides/usage/installation.html#download">Download</a></li>
</ul></li>
</ul> </ul>
</div> </div>
@ -169,17 +181,6 @@
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -143,8 +143,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -153,7 +153,46 @@
<div class="section" id="installation"> <div class="section" id="installation">
<h1>Installation</h1> <h1>Installation</h1>
<pre><code class="language-shell">composer require opencultureconsulting/basics</code></pre> <div class="section" id="composer">
<h2>Composer</h2>
<p>The intended and recommended way of re-using this package is via <a href="https://getcomposer.org/">Composer</a>. The following
command will get you the latest version and make it a dependency of your project. It will also register all classes and
traits with the autoloader to make them available inside the application.</p>
<pre><code class="language-shell"># This will install the latest stable version suitable for your project
composer require &quot;opencultureconsulting/basics&quot;</code></pre>
<p>If you want to use a specific version other than the latest available for your environment, you can do so by appending
the desired version constraint:</p>
<pre><code class="language-shell"># This will install the latest patch level version of 2.0 (i. e. &gt;=2.0.0 &amp;&amp; &lt;2.1.0)
composer require &quot;opencultureconsulting/basics:~2.0&quot;</code></pre>
<p>All available versions as well as further information about <a href="guides/usage/requirements.html">Requirements</a>
and dependencies can be found on
<a href="https://packagist.org/packages/opencultureconsulting/basics">Packagist</a>.</p>
</div>
<div class="section" id="git">
<h2>Git</h2>
<p>Alternatively, you can fetch the files from <a href="https://github.com/opencultureconsulting/php-basics">GitHub</a> and add
them to your project manually. The best way is by cloning the repository, because then you can easily update to a newer
version by just pulling the changes and checking out a different version tag.</p>
<pre><code class="language-shell"># This will clone the repository into the &quot;basics&quot; directory
git clone https://github.com/opencultureconsulting/php-basics.git basics</code></pre>
<p>If you want to use a specific version other than the latest development state, you have to specify the desired tag as
well:</p>
<pre><code class="language-shell"># This will clone the repository state at version &quot;2.0.0&quot; into the &quot;basics&quot; directory
git clone --branch=v2.0.0 https://github.com/opencultureconsulting/php-basics.git basics</code></pre>
<p>Be aware that you also need to make the classes and traits available in your application by either adding them to your
autoloader or by including all files individually in PHP.</p>
</div>
<div class="section" id="download">
<h2>Download</h2>
<p>As a last resort you can also just download the files. You can find all available versions as well as the current
development state on the <a href="https://github.com/opencultureconsulting/php-basics/releases">GitHub release page</a>.</p>
</div>
</div> </div>
</div> </div>
@ -161,17 +200,6 @@
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -143,8 +143,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -153,8 +153,21 @@
<div class="section" id="requirements"> <div class="section" id="requirements">
<h1>Requirements</h1> <h1>Requirements</h1>
<p>PHP 8.1 <div class="section" id="environment">
Composer 2</p> <h2>Environment</h2>
<p>This package requires at least <strong>PHP 8.1</strong>.</p>
<p>It is highly recommended to use <a href="https://getcomposer.org/">Composer</a> for dependency management and autoloading,
although it is technically not strictly required for re-using any of these classes and traits. But it certainly
makes it a lot easier!</p>
</div>
<div class="section" id="dependencies">
<h2>Dependencies</h2>
<p>This package does not have any external dependencies.</p>
</div>
</div> </div>
</div> </div>
@ -162,17 +175,6 @@ Composer 2</p>
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

15
doc/index.html generated
View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -202,17 +202,6 @@
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -194,17 +194,6 @@
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -301,17 +301,6 @@
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -303,17 +303,6 @@
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -303,17 +303,6 @@
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -303,17 +303,6 @@
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -303,17 +303,6 @@
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -305,17 +305,6 @@
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -301,17 +301,6 @@
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -302,17 +302,6 @@
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -302,17 +302,6 @@
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -302,17 +302,6 @@
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -302,17 +302,6 @@
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -304,17 +304,6 @@
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -142,8 +142,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -301,17 +301,6 @@
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -143,8 +143,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -169,17 +169,6 @@
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -143,8 +143,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -168,17 +168,6 @@
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">

View File

@ -143,8 +143,8 @@
<h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
</section> </section>
<section class="phpdocumentor-sidebar__category -index"> <section class="phpdocumentor-sidebar__category -indices">
<h2 class="phpdocumentor-sidebar__category-header">Index</h2> <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
<h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3> <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
</section> </section>
</aside> </aside>
@ -169,17 +169,6 @@
<section class="phpdocumentor-search-results__dialog"> <section class="phpdocumentor-search-results__dialog">
<header class="phpdocumentor-search-results__header"> <header class="phpdocumentor-search-results__header">
<h2 class="phpdocumentor-search-results__title">Search results</h2> <h2 class="phpdocumentor-search-results__title">Search results</h2>
<section data-search-form class="phpdocumentor-search">
<label>
<span class="visually-hidden">Search for</span>
<svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
</svg>
<input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
</label>
</section>
<button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button> <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
</header> </header>
<section class="phpdocumentor-search-results__body"> <section class="phpdocumentor-search-results__body">