diff --git a/.gitignore b/.gitignore index ff231a324f6f9a9c8b85d177c5714ded80949e78..2f099fb82d371cae80f6ca78a19fd4eba4ff3738 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ /tests/data/*/xml /tests/data/*/docs /tools +.php_cs.cache diff --git a/.travis.yml b/.travis.yml index 8c3b1448744ff5466dfd0dc9c2a20b90cc66423a..521093dd18385438566bd578db7277cf6c235c52 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,34 +1,36 @@ os: - linux - language: php - php: - - 5.6 - - 7.0 - - 7.1 - - 7.0snapshot - - 7.1snapshot - - master - +- 7.1.26 +- 7.2 +- 7.3 +- 7.1snapshot +- 7.2snapshot +- 7.3snapshot +- master matrix: allow_failures: - - php: master - + - php: master before_install: - - composer self-update - - wget https://phar.io/releases/phive.phar - - wget https://phar.io/releases/phive.phar.asc - - gpg --keyserver hkps.pool.sks-keyservers.net --recv-keys 0x9B2D5D79 - - gpg --verify phive.phar.asc phive.phar - - chmod +x phive.phar - - sudo mv phive.phar /usr/bin/phive - +- composer self-update +- if [ ! -d $HOME/.phive ]; then mkdir $HOME/.phive ; fi +- if [ ! -f $HOME/.phive/phive.phar ]; then ant getphive ; mv phive.phar $HOME/.phive + ; fi +- sudo cp $HOME/.phive/phive.phar /usr/local/bin/phive +cache: + directories: + - "$HOME/.phive" + - "$HOME/.phive/phars" + - "$HOME/.cache/composer" + - "$HOME/.composer/cache" + - "$HOME/.gnupg" install: - - travis_retry composer install --no-interaction --prefer-source - - phive install --trust-gpg-keys 4AA394086372C20A,2A8299CE842DD38C phpab phpunit@^5.7 - -script: ./tools/phpunit - +- travis_retry composer install --no-interaction --prefer-source +- phive --no-progress install --trust-gpg-keys 4AA394086372C20A,2A8299CE842DD38C,E82B2FB314E9906E +script: "./tools/phpunit" notifications: email: false +env: + global: + secure: ou+icphdwzdA9o9xVN/dQEAdos03LuP3CPNz6wzRwaqeHq4KEVOCMdPaVs9Gyf+YAqS/xMGx15TNE5QK7+y1PE9tn7hhBtDunNIZU9n4g1OeC06hjm4eMg+8CwTZlXlAiDuDa5TC18vMMXFpVxL8NxyNVM1AdCrDg95Mx4+7YQY= diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d8478db6e929e0e77a0cac511ff51e1ea6c496c..82894d0d61dadcfd58a23416d32c223cfb65ea55 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog of phpDox +## phpDox 0.12.0 (13 Mar 2019) + +Note: This release requires PHP 7.1+ + +### Changed +* Upgraded dependencies: Now using PHP-Parser ^4.2, PHP-Timer ^2.0 +* Changed all sources to follow PHP 7 syntax +* Updated php core classes and interfaces data + +### Fixed +* [#271](https://github.com/theseer/phpdox/issues/271): Fix TokenFile not Found Error on Windows + +### Merged +* [#352](https://github.com/theseer/phpdox/pull/352): Fix bad exit status 255 generated by uncaught TypeError +* [#335](https://github.com/theseer/phpdox/pull/335): Make this compatible with PHPUnit 7.2 + + ## phpDox 0.11.2 (22 May 2018) Note: 0.11.x is the last series of releases that supports running under PHP 5.x @@ -23,7 +40,7 @@ Note: 0.11.x is the last series of releases that supports running under PHP 5.x ### Merged * [#310](https://github.com/theseer/phpdox/pull/310): Make the build reproducible -* [#319](https://github.com/theseer/phpdox/pull/319):Fixed: #315 count(): Parameter must be an array or an object that implements Countable +* [#319](https://github.com/theseer/phpdox/pull/319): Fixed: #315 count(): Parameter must be an array or an object that implements Countable ### Fixed * [#320](https://github.com/theseer/phpdox/issues/320): Multiline annotation for class constants fails to add subsequent lines diff --git a/LICENSE b/LICENSE index 39e1b99b7f4d9dbfe88fa0ede805c8613e171b93..0b7f999dcfd367c4e32731fdc790bd3c653b39b9 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ phpDox -Copyright (c) 2010-2015 Arne Blankerts <arne@blankerts.de> +Copyright (c) 2010-2019 Arne Blankerts <arne@blankerts.de> and contributors All rights reserved. Redistribution and use in source and binary forms, with or without modification, @@ -28,4 +28,3 @@ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - diff --git a/README.md b/README.md index 1a08f4cd02b3c129a97463b0a2e3aa103c62c5a6..178b2049138ae4ebce8e39cb408c73bef568d062 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ and more. Requirements ------------ -- PHP Version 5.5+ (PHP 7.x recommended) +- PHP Version 7.1+ (For PHP 5.5+, use phpDox 0.11.2) - ext/dom - ext/xsl - ext/iconv and [libiconv version >= 2.12](http://www.gnu.org/software/libiconv/documentation/libiconv/iconv.1.html) diff --git a/build.xml b/build.xml index 1b2097a1287c96bb516d0f30de43a10004362543..9fa1aa4c3d21d7401c2b5310154fcde634e31b8e 100644 --- a/build.xml +++ b/build.xml @@ -132,7 +132,7 @@ <target name="release" description="Make a release based on latest tag"> - + <exec executable="bash" outputproperty="version"> <arg value="-c"/> <arg value="${basedir}/build/phar/phpdox*.phar --version | awk 'BEGIN { ORS = ""; } {print $2}'"/> @@ -150,6 +150,22 @@ </target> + <target name="getphive" description="Get phive on travis-ci"> + <exec executable="wget" taskname="wget"> + <arg value="https://phar.io/releases/phive.phar"/> + </exec> + <exec executable="wget" taskname="wget"> + <arg value="https://phar.io/releases/phive.phar.asc"/> + </exec> + <exec executable="gpg" taskname="gpg-get-key"> + <arg line="--keyserver hkps.pool.sks-keyservers.net --recv-keys 0x9D8A98B29B2D5D79" /> + </exec> + <exec executable="gpg" taskname="gpg-verify"> + <arg line="--verify phive.phar.asc phive.phar" /> + </exec> + <chmod file="phive.phar" perm="+x" /> + <delete file="phive.phar.asc" /> + </target> <target name="build" depends="clean,phpab,phpunit"/> </project> diff --git a/composer.lock b/composer.lock index ff4a2e3e64aa363b419a3ba6ca4e571c1d33d272..5cf147d4ce2dca818d9a7e9acaf195deb922dfd1 100644 --- a/composer.lock +++ b/composer.lock @@ -8,16 +8,16 @@ "packages": [ { "name": "nikic/php-parser", - "version": "v4.2.0", + "version": "v4.2.1", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "594bcae1fc0bccd3993d2f0d61a018e26ac2865a" + "reference": "5221f49a608808c1e4d436df32884cbc1b821ac0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/594bcae1fc0bccd3993d2f0d61a018e26ac2865a", - "reference": "594bcae1fc0bccd3993d2f0d61a018e26ac2865a", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/5221f49a608808c1e4d436df32884cbc1b821ac0", + "reference": "5221f49a608808c1e4d436df32884cbc1b821ac0", "shasum": "" }, "require": { @@ -55,20 +55,20 @@ "parser", "php" ], - "time": "2019-01-12T16:31:37+00:00" + "time": "2019-02-16T20:54:15+00:00" }, { "name": "phpunit/php-timer", - "version": "2.0.0", + "version": "2.1.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-timer.git", - "reference": "8b8454ea6958c3dee38453d3bd571e023108c91f" + "reference": "8b389aebe1b8b0578430bda0c7c95a829608e059" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/8b8454ea6958c3dee38453d3bd571e023108c91f", - "reference": "8b8454ea6958c3dee38453d3bd571e023108c91f", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/8b389aebe1b8b0578430bda0c7c95a829608e059", + "reference": "8b389aebe1b8b0578430bda0c7c95a829608e059", "shasum": "" }, "require": { @@ -80,7 +80,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-master": "2.1-dev" } }, "autoload": { @@ -104,7 +104,7 @@ "keywords": [ "timer" ], - "time": "2018-02-01T13:07:23+00:00" + "time": "2019-02-20T10:12:59+00:00" }, { "name": "theseer/directoryscanner", diff --git a/dependencies/php/classes/ArgumentCountError.xml b/dependencies/php/classes/ArgumentCountError.xml new file mode 100644 index 0000000000000000000000000000000000000000..e6df46800ee541fff34233272d30ce20f83b9637 --- /dev/null +++ b/dependencies/php/classes/ArgumentCountError.xml @@ -0,0 +1,86 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="ArgumentCountError" namespace="" name="ArgumentCountError"> + <extends name="TypeError" full="TypeError"/> + <member name="message" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The error message"/> + <var type="string"/> + </docblock> + </member> + <member name="code" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The error code"/> + <var type="int"/> + </docblock> + </member> + <member name="file" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The filename where the error happened"/> + <var type="string"/> + </docblock> + </member> + <member name="line" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The line where the error happened"/> + <var type="int"/> + </docblock> + </member> + <method name="getMessage" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getPrevious" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="Throwable"/> + </docblock> + </method> + <method name="getCode" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="mixed"/> + </docblock> + </method> + <method name="getFile" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getLine" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + </method> + <method name="getTrace" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + </method> + <method name="getTraceAsString" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="__toString" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="__clone" abstract="false" static="false" final="true"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/ArithmeticError.xml b/dependencies/php/classes/ArithmeticError.xml index 289a7dcf0ccdcf918604c2a7fa1942875d504453..71f45c932cdcd80f9746cdd4fd7f06d7c04f5e30 100644 --- a/dependencies/php/classes/ArithmeticError.xml +++ b/dependencies/php/classes/ArithmeticError.xml @@ -1,6 +1,34 @@ <?xml version="1.0" encoding="UTF-8" ?> <class xmlns="http://xml.phpdox.net/src" full="ArithmeticError" namespace="" name="ArithmeticError"> <extends name="Error" full="Error"/> + <member name="message" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The error message"/> + <var type="string"/> + </docblock> + </member> + <member name="code" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The error code"/> + <var type="int"/> + </docblock> + </member> + <member name="file" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The filename where the error happened"/> + <var type="string"/> + </docblock> + </member> + <member name="line" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The line where the error happened"/> + <var type="int"/> + </docblock> + </member> <method name="getMessage" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact=""/> diff --git a/dependencies/php/classes/ArrayIterator.xml b/dependencies/php/classes/ArrayIterator.xml index 6b78f2777b159f061bf9004a075100a66d04b877..6b7faeae17bbe81b9c6b38f33ff1ed7a1f0341cd 100644 --- a/dependencies/php/classes/ArrayIterator.xml +++ b/dependencies/php/classes/ArrayIterator.xml @@ -1,6 +1,16 @@ <?xml version="1.0" encoding="UTF-8" ?> <class xmlns="http://xml.phpdox.net/src" full="ArrayIterator" namespace="" name="ArrayIterator"> <implements name="ArrayAccess" full="ArrayAccess"/> + <constant name="" value="1"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="2"> + <docblock> + <var type="integer"/> + </docblock> + </constant> <method name="append" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Append an element"/> @@ -42,7 +52,7 @@ </method> <method name="getFlags" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Get flags"/> + <description compact="Get behavior flags"/> <return type="void"/> </docblock> </method> @@ -79,31 +89,31 @@ <method name="offsetExists" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Check if offset exists"/> - <return type="void"/> + <return type="bool"/> </docblock> - <parameter name="index" optional="false" byreference="false" type="string"/> + <parameter name="index" optional="false" byreference="false" type="object" class="mixed"/> </method> <method name="offsetGet" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Get value for an offset"/> <return type="mixed"/> </docblock> - <parameter name="index" optional="false" byreference="false" type="string"/> + <parameter name="index" optional="false" byreference="false" type="object" class="mixed"/> </method> <method name="offsetSet" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Set value for an offset"/> <return type="void"/> </docblock> - <parameter name="index" optional="false" byreference="false" type="string"/> - <parameter name="newval" optional="false" byreference="false" type="string"/> + <parameter name="index" optional="false" byreference="false" type="object" class="mixed"/> + <parameter name="newval" optional="false" byreference="false" type="object" class="mixed"/> </method> <method name="offsetUnset" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Unset value for an offset"/> <return type="void"/> </docblock> - <parameter name="index" optional="false" byreference="false" type="string"/> + <parameter name="index" optional="false" byreference="false" type="object" class="mixed"/> </method> <method name="rewind" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -133,17 +143,17 @@ </method> <method name="uasort" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="User defined sort"/> + <description compact="Sort with a user-defined comparison function and maintain index association">This method sorts the elements such that indices maintain their correlation with the values they are associated with, using a user-defined comparison function.</description> <return type="void"/> </docblock> - <parameter name="cmp_function" optional="false" byreference="false" type="string"/> + <parameter name="cmp_function" optional="false" byreference="false" type="object" class="callable"/> </method> <method name="uksort" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="User defined sort"/> + <description compact="Sort by keys using a user-defined comparison function">This method sorts the elements by keys using a user-supplied comparison function.</description> <return type="void"/> </docblock> - <parameter name="cmp_function" optional="false" byreference="false" type="string"/> + <parameter name="cmp_function" optional="false" byreference="false" type="object" class="callable"/> </method> <method name="unserialize" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/ArrayObject.xml b/dependencies/php/classes/ArrayObject.xml index e7ba4059bea3aaf1966a0d3f8c19e3e74833ac04..34ddc0a86721e475d2b2f92eb871341b70bd8351 100644 --- a/dependencies/php/classes/ArrayObject.xml +++ b/dependencies/php/classes/ArrayObject.xml @@ -41,20 +41,20 @@ </method> <method name="exchangeArray" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Exchange the array for another one."/> + <description compact="Exchange the array for another one"/> <return type="array"/> </docblock> <parameter name="input" optional="false" byreference="false" type="object" class="mixed"/> </method> <method name="getArrayCopy" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Creates a copy of the ArrayObject."/> + <description compact="Creates a copy of the ArrayObject"/> <return type="array"/> </docblock> </method> <method name="getFlags" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Gets the behavior flags."/> + <description compact="Gets the behavior flags"/> <return type="int"/> </docblock> </method> @@ -66,7 +66,7 @@ </method> <method name="getIteratorClass" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Gets the iterator classname for the ArrayObject."/> + <description compact="Gets the iterator classname for the ArrayObject"/> <return type="string"/> </docblock> </method> @@ -125,14 +125,14 @@ </method> <method name="setFlags" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Sets the behavior flags."/> + <description compact="Sets the behavior flags"/> <return type="void"/> </docblock> <parameter name="flags" optional="false" byreference="false" type="int"/> </method> <method name="setIteratorClass" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Sets the iterator classname for the ArrayObject."/> + <description compact="Sets the iterator classname for the ArrayObject"/> <return type="void"/> </docblock> <parameter name="iterator_class" optional="false" byreference="false" type="string"/> diff --git a/dependencies/php/classes/AssertionError.xml b/dependencies/php/classes/AssertionError.xml index b7ed2ef3a8eba29f6587126682227855e8c3f8e8..f55714ed72598af7ad723623d7b584a61944f8af 100644 --- a/dependencies/php/classes/AssertionError.xml +++ b/dependencies/php/classes/AssertionError.xml @@ -1,6 +1,34 @@ <?xml version="1.0" encoding="UTF-8" ?> <class xmlns="http://xml.phpdox.net/src" full="AssertionError" namespace="" name="AssertionError"> <extends name="Error" full="Error"/> + <member name="message" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The error message"/> + <var type="string"/> + </docblock> + </member> + <member name="code" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The error code"/> + <var type="int"/> + </docblock> + </member> + <member name="file" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The filename where the error happened"/> + <var type="string"/> + </docblock> + </member> + <member name="line" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The line where the error happened"/> + <var type="int"/> + </docblock> + </member> <method name="getMessage" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact=""/> diff --git a/dependencies/php/classes/CachingIterator.xml b/dependencies/php/classes/CachingIterator.xml index 948cfb5fd346515910692f230fb6c830bc045e18..57b7342e2ef28b804fdc662dda16e03308436615 100644 --- a/dependencies/php/classes/CachingIterator.xml +++ b/dependencies/php/classes/CachingIterator.xml @@ -33,7 +33,7 @@ </constant> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Construct a new CachingIterator object for the iterator."/> + <description compact="Construct a new CachingIterator object for the iterator"/> <return type="void"/> </docblock> <parameter name="iterator" optional="false" byreference="false" type="object" class="Iterator"/> @@ -92,7 +92,7 @@ <description compact="The offsetExists purpose"/> <return type="void"/> </docblock> - <parameter name="index" optional="false" byreference="false" type="string"/> + <parameter name="index" optional="false" byreference="false" type="object" class="mixed"/> </method> <method name="offsetGet" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -106,8 +106,8 @@ <description compact="The offsetSet purpose"/> <return type="void"/> </docblock> - <parameter name="index" optional="false" byreference="false" type="string"/> - <parameter name="newval" optional="false" byreference="false" type="string"/> + <parameter name="index" optional="false" byreference="false" type="object" class="mixed"/> + <parameter name="newval" optional="false" byreference="false" type="object" class="mixed"/> </method> <method name="offsetUnset" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/CairoContext.xml b/dependencies/php/classes/CairoContext.xml index 268065203b693a7e67bb0f667750baf27fdb0d60..0a9617909ab75f26fbe4c878d4ac3430d8e3bccb 100644 --- a/dependencies/php/classes/CairoContext.xml +++ b/dependencies/php/classes/CairoContext.xml @@ -274,48 +274,48 @@ <description compact="The inFill purpose">Object oriented style (method):</description> <return type="bool"/> </docblock> - <parameter name="x" optional="false" byreference="false" type="string"/> - <parameter name="y" optional="false" byreference="false" type="string"/> + <parameter name="x" optional="false" byreference="false" type="object" class="float"/> + <parameter name="y" optional="false" byreference="false" type="object" class="float"/> </method> <method name="inStroke" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The inStroke purpose">Object oriented style (method):</description> <return type="bool"/> </docblock> - <parameter name="x" optional="false" byreference="false" type="string"/> - <parameter name="y" optional="false" byreference="false" type="string"/> + <parameter name="x" optional="false" byreference="false" type="object" class="float"/> + <parameter name="y" optional="false" byreference="false" type="object" class="float"/> </method> <method name="lineTo" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The lineTo purpose">Object oriented style (method):</description> <return type="void"/> </docblock> - <parameter name="x" optional="false" byreference="false" type="string"/> - <parameter name="y" optional="false" byreference="false" type="string"/> + <parameter name="x" optional="false" byreference="false" type="object" class="float"/> + <parameter name="y" optional="false" byreference="false" type="object" class="float"/> </method> <method name="mask" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The mask purpose">Object oriented style (method):</description> <return type="void"/> </docblock> - <parameter name="pattern" optional="false" byreference="false" type="string"/> + <parameter name="pattern" optional="false" byreference="false" type="object" class="CairoPattern"/> </method> <method name="maskSurface" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The maskSurface purpose">Object oriented style (method):</description> <return type="void"/> </docblock> - <parameter name="surface" optional="false" byreference="false" type="string"/> - <parameter name="x" optional="true" byreference="false" type="string"/> - <parameter name="y" optional="true" byreference="false" type="string"/> + <parameter name="surface" optional="false" byreference="false" type="object" class="CairoSurface"/> + <parameter name="x" optional="true" byreference="false" type="object" class="float"/> + <parameter name="y" optional="true" byreference="false" type="object" class="float"/> </method> <method name="moveTo" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The moveTo purpose">Object oriented style (method):</description> <return type="void"/> </docblock> - <parameter name="x" optional="false" byreference="false" type="string"/> - <parameter name="y" optional="false" byreference="false" type="string"/> + <parameter name="x" optional="false" byreference="false" type="object" class="float"/> + <parameter name="y" optional="false" byreference="false" type="object" class="float"/> </method> <method name="newPath" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -340,7 +340,7 @@ <description compact="The paintWithAlpha purpose">Object oriented style (method):</description> <return type="void"/> </docblock> - <parameter name="alpha" optional="false" byreference="false" type="string"/> + <parameter name="alpha" optional="false" byreference="false" type="object" class="float"/> </method> <method name="pathExtents" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -371,45 +371,45 @@ <description compact="The pushGroupWithContent purpose">Object oriented style (method):</description> <return type="void"/> </docblock> - <parameter name="content" optional="false" byreference="false" type="string"/> + <parameter name="content" optional="false" byreference="false" type="int"/> </method> <method name="rectangle" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The rectangle purpose">Object oriented style (method):</description> <return type="void"/> </docblock> - <parameter name="x" optional="false" byreference="false" type="string"/> - <parameter name="y" optional="false" byreference="false" type="string"/> - <parameter name="width" optional="false" byreference="false" type="string"/> - <parameter name="height" optional="false" byreference="false" type="string"/> + <parameter name="x" optional="false" byreference="false" type="object" class="float"/> + <parameter name="y" optional="false" byreference="false" type="object" class="float"/> + <parameter name="width" optional="false" byreference="false" type="object" class="float"/> + <parameter name="height" optional="false" byreference="false" type="object" class="float"/> </method> <method name="relCurveTo" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The relCurveTo purpose">Object oriented style (method):</description> <return type="void"/> </docblock> - <parameter name="x1" optional="false" byreference="false" type="string"/> - <parameter name="y1" optional="false" byreference="false" type="string"/> - <parameter name="x2" optional="false" byreference="false" type="string"/> - <parameter name="y2" optional="false" byreference="false" type="string"/> - <parameter name="x3" optional="false" byreference="false" type="string"/> - <parameter name="y3" optional="false" byreference="false" type="string"/> + <parameter name="x1" optional="false" byreference="false" type="object" class="float"/> + <parameter name="y1" optional="false" byreference="false" type="object" class="float"/> + <parameter name="x2" optional="false" byreference="false" type="object" class="float"/> + <parameter name="y2" optional="false" byreference="false" type="object" class="float"/> + <parameter name="x3" optional="false" byreference="false" type="object" class="float"/> + <parameter name="y3" optional="false" byreference="false" type="object" class="float"/> </method> <method name="relLineTo" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The relLineTo purpose">Object oriented style (method):</description> <return type="void"/> </docblock> - <parameter name="x" optional="false" byreference="false" type="string"/> - <parameter name="y" optional="false" byreference="false" type="string"/> + <parameter name="x" optional="false" byreference="false" type="object" class="float"/> + <parameter name="y" optional="false" byreference="false" type="object" class="float"/> </method> <method name="relMoveTo" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The relMoveTo purpose">Object oriented style (method):</description> <return type="void"/> </docblock> - <parameter name="x" optional="false" byreference="false" type="string"/> - <parameter name="y" optional="false" byreference="false" type="string"/> + <parameter name="x" optional="false" byreference="false" type="object" class="float"/> + <parameter name="y" optional="false" byreference="false" type="object" class="float"/> </method> <method name="resetClip" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -428,7 +428,7 @@ <description compact="The rotate purpose">Object oriented style (method):</description> <return type="void"/> </docblock> - <parameter name="angle" optional="false" byreference="false" type="string"/> + <parameter name="angle" optional="false" byreference="false" type="object" class="float"/> </method> <method name="save" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -441,8 +441,8 @@ <description compact="The scale purpose">Object oriented style (method):</description> <return type="void"/> </docblock> - <parameter name="x" optional="false" byreference="false" type="string"/> - <parameter name="y" optional="false" byreference="false" type="string"/> + <parameter name="x" optional="false" byreference="false" type="object" class="float"/> + <parameter name="y" optional="false" byreference="false" type="object" class="float"/> </method> <method name="selectFontFace" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -450,30 +450,30 @@ <return type="void"/> </docblock> <parameter name="family" optional="false" byreference="false" type="string"/> - <parameter name="slant" optional="true" byreference="false" type="string"/> - <parameter name="weight" optional="true" byreference="false" type="string"/> + <parameter name="slant" optional="true" byreference="false" type="int"/> + <parameter name="weight" optional="true" byreference="false" type="int"/> </method> <method name="setAntialias" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The setAntialias purpose">Object oriented style (method):</description> <return type="void"/> </docblock> - <parameter name="antialias" optional="true" byreference="false" type="string"/> + <parameter name="antialias" optional="true" byreference="false" type="int"/> </method> <method name="setDash" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The setDash purpose">Object oriented style (method):</description> <return type="void"/> </docblock> - <parameter name="dashes" optional="false" byreference="false" type="string"/> - <parameter name="offset" optional="true" byreference="false" type="string"/> + <parameter name="dashes" optional="false" byreference="false" type="object" class="array"/> + <parameter name="offset" optional="true" byreference="false" type="object" class="float"/> </method> <method name="setFillRule" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The setFillRule purpose">Object oriented style (method):</description> <return type="void"/> </docblock> - <parameter name="setting" optional="false" byreference="false" type="string"/> + <parameter name="setting" optional="false" byreference="false" type="int"/> </method> <method name="setFontFace" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -487,112 +487,112 @@ <description compact="The setFontMatrix purpose">Object oriented style (method):</description> <return type="void"/> </docblock> - <parameter name="matrix" optional="false" byreference="false" type="string"/> + <parameter name="matrix" optional="false" byreference="false" type="object" class="CairoMatrix"/> </method> <method name="setFontOptions" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The setFontOptions purpose">Object oriented style (method):</description> <return type="void"/> </docblock> - <parameter name="fontoptions" optional="false" byreference="false" type="string"/> + <parameter name="fontoptions" optional="false" byreference="false" type="object" class="CairoFontOptions"/> </method> <method name="setFontSize" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The setFontSize purpose">Object oriented style (method):</description> <return type="void"/> </docblock> - <parameter name="size" optional="false" byreference="false" type="string"/> + <parameter name="size" optional="false" byreference="false" type="object" class="float"/> </method> <method name="setLineCap" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The setLineCap purpose">Object oriented style (method):</description> <return type="void"/> </docblock> - <parameter name="setting" optional="false" byreference="false" type="string"/> + <parameter name="setting" optional="false" byreference="false" type="int"/> </method> <method name="setLineJoin" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The setLineJoin purpose">Object oriented style (method):</description> <return type="void"/> </docblock> - <parameter name="setting" optional="false" byreference="false" type="string"/> + <parameter name="setting" optional="false" byreference="false" type="int"/> </method> <method name="setLineWidth" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The setLineWidth purpose">Object oriented style (method):</description> <return type="void"/> </docblock> - <parameter name="width" optional="false" byreference="false" type="string"/> + <parameter name="width" optional="false" byreference="false" type="object" class="float"/> </method> <method name="setMatrix" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The setMatrix purpose">Object oriented style (method):</description> <return type="void"/> </docblock> - <parameter name="matrix" optional="false" byreference="false" type="string"/> + <parameter name="matrix" optional="false" byreference="false" type="object" class="CairoMatrix"/> </method> <method name="setMiterLimit" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The setMiterLimit purpose">Object oriented style (method):</description> <return type="void"/> </docblock> - <parameter name="limit" optional="false" byreference="false" type="string"/> + <parameter name="limit" optional="false" byreference="false" type="object" class="float"/> </method> <method name="setOperator" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The setOperator purpose">Object oriented style (method):</description> <return type="void"/> </docblock> - <parameter name="setting" optional="false" byreference="false" type="string"/> + <parameter name="setting" optional="false" byreference="false" type="int"/> </method> <method name="setScaledFont" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The setScaledFont purpose">Object oriented style (method):</description> <return type="void"/> </docblock> - <parameter name="scaledfont" optional="false" byreference="false" type="string"/> + <parameter name="scaledfont" optional="false" byreference="false" type="object" class="CairoScaledFont"/> </method> <method name="setSource" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The setSource purpose">Object oriented style (method):</description> <return type="void"/> </docblock> - <parameter name="pattern" optional="false" byreference="false" type="string"/> + <parameter name="pattern" optional="false" byreference="false" type="object" class="CairoPattern"/> </method> <method name="setSourceRGB" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The setSourceRGB purpose">Object oriented style (method):</description> <return type="void"/> </docblock> - <parameter name="red" optional="false" byreference="false" type="string"/> - <parameter name="green" optional="false" byreference="false" type="string"/> - <parameter name="blue" optional="false" byreference="false" type="string"/> + <parameter name="red" optional="false" byreference="false" type="object" class="float"/> + <parameter name="green" optional="false" byreference="false" type="object" class="float"/> + <parameter name="blue" optional="false" byreference="false" type="object" class="float"/> </method> <method name="setSourceRGBA" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The setSourceRGBA purpose">Object oriented style (method):</description> <return type="void"/> </docblock> - <parameter name="red" optional="false" byreference="false" type="string"/> - <parameter name="green" optional="false" byreference="false" type="string"/> - <parameter name="blue" optional="false" byreference="false" type="string"/> - <parameter name="alpha" optional="false" byreference="false" type="string"/> + <parameter name="red" optional="false" byreference="false" type="object" class="float"/> + <parameter name="green" optional="false" byreference="false" type="object" class="float"/> + <parameter name="blue" optional="false" byreference="false" type="object" class="float"/> + <parameter name="alpha" optional="false" byreference="false" type="object" class="float"/> </method> <method name="setSourceSurface" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The setSourceSurface purpose">Object oriented style (method):</description> <return type="void"/> </docblock> - <parameter name="surface" optional="false" byreference="false" type="string"/> - <parameter name="x" optional="true" byreference="false" type="string"/> - <parameter name="y" optional="true" byreference="false" type="string"/> + <parameter name="surface" optional="false" byreference="false" type="object" class="CairoSurface"/> + <parameter name="x" optional="true" byreference="false" type="object" class="float"/> + <parameter name="y" optional="true" byreference="false" type="object" class="float"/> </method> <method name="setTolerance" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The setTolerance purpose">Object oriented style (method):</description> <return type="void"/> </docblock> - <parameter name="tolerance" optional="false" byreference="false" type="string"/> + <parameter name="tolerance" optional="false" byreference="false" type="object" class="float"/> </method> <method name="showPage" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -650,30 +650,30 @@ <description compact="The transform purpose">Object oriented style (method):</description> <return type="void"/> </docblock> - <parameter name="matrix" optional="false" byreference="false" type="string"/> + <parameter name="matrix" optional="false" byreference="false" type="object" class="CairoMatrix"/> </method> <method name="translate" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The translate purpose">Object oriented style (method):</description> <return type="void"/> </docblock> - <parameter name="x" optional="false" byreference="false" type="string"/> - <parameter name="y" optional="false" byreference="false" type="string"/> + <parameter name="x" optional="false" byreference="false" type="object" class="float"/> + <parameter name="y" optional="false" byreference="false" type="object" class="float"/> </method> <method name="userToDevice" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The userToDevice purpose">Object oriented style (method):</description> <return type="array"/> </docblock> - <parameter name="x" optional="false" byreference="false" type="string"/> - <parameter name="y" optional="false" byreference="false" type="string"/> + <parameter name="x" optional="false" byreference="false" type="object" class="float"/> + <parameter name="y" optional="false" byreference="false" type="object" class="float"/> </method> <method name="userToDeviceDistance" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The userToDeviceDistance purpose">Object oriented style (method):</description> <return type="array"/> </docblock> - <parameter name="x" optional="false" byreference="false" type="string"/> - <parameter name="y" optional="false" byreference="false" type="string"/> + <parameter name="x" optional="false" byreference="false" type="object" class="float"/> + <parameter name="y" optional="false" byreference="false" type="object" class="float"/> </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/CairoFontFace.xml b/dependencies/php/classes/CairoFontFace.xml index 236937d29a3b2d3a0bfb52c0f8beca87a0a23ee4..27f74c368d6fd5aa2ca71cbfc00c8dc62e0fa130 100644 --- a/dependencies/php/classes/CairoFontFace.xml +++ b/dependencies/php/classes/CairoFontFace.xml @@ -8,7 +8,7 @@ </constructor> <method name="getType" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Retrieves the font face type"/> + <description compact="Retrieves the font face type">Object oriented style (method):</description> <return type="int"/> </docblock> </method> diff --git a/dependencies/php/classes/CairoFontOptions.xml b/dependencies/php/classes/CairoFontOptions.xml index 8b244ad659fa2dd0b93fadcca06c56e830218acf..7c8a9376374b895350f823e4aa736e4d90278e05 100644 --- a/dependencies/php/classes/CairoFontOptions.xml +++ b/dependencies/php/classes/CairoFontOptions.xml @@ -11,7 +11,7 @@ <description compact="The equal purpose"/> <return type="bool"/> </docblock> - <parameter name="other" optional="false" byreference="false" type="string"/> + <parameter name="other" optional="false" byreference="false" type="object" class="CairoFontOptions"/> </method> <method name="getAntialias" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -48,35 +48,35 @@ <description compact="The merge purpose"/> <return type="void"/> </docblock> - <parameter name="other" optional="false" byreference="false" type="string"/> + <parameter name="other" optional="false" byreference="false" type="object" class="CairoFontOptions"/> </method> <method name="setAntialias" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The setAntialias purpose">Object oriented style (method):</description> <return type="void"/> </docblock> - <parameter name="antialias" optional="false" byreference="false" type="string"/> + <parameter name="antialias" optional="false" byreference="false" type="int"/> </method> <method name="setHintMetrics" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The setHintMetrics purpose"/> <return type="void"/> </docblock> - <parameter name="hint_metrics" optional="false" byreference="false" type="string"/> + <parameter name="hint_metrics" optional="false" byreference="false" type="int"/> </method> <method name="setHintStyle" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The setHintStyle purpose"/> <return type="void"/> </docblock> - <parameter name="hint_style" optional="false" byreference="false" type="string"/> + <parameter name="hint_style" optional="false" byreference="false" type="int"/> </method> <method name="setSubpixelOrder" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The setSubpixelOrder purpose"/> <return type="void"/> </docblock> - <parameter name="subpixel_order" optional="false" byreference="false" type="string"/> + <parameter name="subpixel_order" optional="false" byreference="false" type="int"/> </method> <method name="status" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/CairoGradientPattern.xml b/dependencies/php/classes/CairoGradientPattern.xml index 1e1354506505dbcafbab12f67cde2fb13f1a72ba..2684002b53de7e1c28a3a741a9bfbd7348e62ca7 100644 --- a/dependencies/php/classes/CairoGradientPattern.xml +++ b/dependencies/php/classes/CairoGradientPattern.xml @@ -6,21 +6,21 @@ <description compact="The addColorStopRgb purpose"/> <return type="void"/> </docblock> - <parameter name="offset" optional="false" byreference="false" type="string"/> - <parameter name="red" optional="false" byreference="false" type="string"/> - <parameter name="green" optional="false" byreference="false" type="string"/> - <parameter name="blue" optional="false" byreference="false" type="string"/> + <parameter name="offset" optional="false" byreference="false" type="object" class="float"/> + <parameter name="red" optional="false" byreference="false" type="object" class="float"/> + <parameter name="green" optional="false" byreference="false" type="object" class="float"/> + <parameter name="blue" optional="false" byreference="false" type="object" class="float"/> </method> <method name="addColorStopRgba" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The addColorStopRgba purpose"/> <return type="void"/> </docblock> - <parameter name="offset" optional="false" byreference="false" type="string"/> - <parameter name="red" optional="false" byreference="false" type="string"/> - <parameter name="green" optional="false" byreference="false" type="string"/> - <parameter name="blue" optional="false" byreference="false" type="string"/> - <parameter name="alpha" optional="false" byreference="false" type="string"/> + <parameter name="offset" optional="false" byreference="false" type="object" class="float"/> + <parameter name="red" optional="false" byreference="false" type="object" class="float"/> + <parameter name="green" optional="false" byreference="false" type="object" class="float"/> + <parameter name="blue" optional="false" byreference="false" type="object" class="float"/> + <parameter name="alpha" optional="false" byreference="false" type="object" class="float"/> </method> <method name="getColorStopCount" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -33,7 +33,7 @@ <description compact="The getColorStopRgba purpose"/> <return type="array"/> </docblock> - <parameter name="index" optional="false" byreference="false" type="string"/> + <parameter name="index" optional="false" byreference="false" type="int"/> </method> <method name="getExtend" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -71,7 +71,7 @@ <description compact=""/> <return type="void"/> </docblock> - <parameter name="matrix" optional="false" byreference="false" type="string"/> + <parameter name="matrix" optional="false" byreference="false" type="object" class="CairoMatrix"/> </method> <method name="status" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/CairoImageSurface.xml b/dependencies/php/classes/CairoImageSurface.xml index a11a2967b4e1a4fcd7c797443f53a53f41da53ea..7688ced11f9db3edb2d3950b574dfb62294323a3 100644 --- a/dependencies/php/classes/CairoImageSurface.xml +++ b/dependencies/php/classes/CairoImageSurface.xml @@ -19,7 +19,6 @@ <parameter name="format" optional="false" byreference="false" type="int"/> <parameter name="width" optional="false" byreference="false" type="int"/> <parameter name="height" optional="false" byreference="false" type="int"/> - <parameter name="stride" optional="true" byreference="false" type="int"/> </method> <method name="createFromPng" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -127,26 +126,26 @@ <description compact=""/> <return type="void"/> </docblock> - <parameter name="x" optional="false" byreference="false" type="string"/> - <parameter name="y" optional="false" byreference="false" type="string"/> - <parameter name="width" optional="false" byreference="false" type="string"/> - <parameter name="height" optional="false" byreference="false" type="string"/> + <parameter name="x" optional="false" byreference="false" type="object" class="float"/> + <parameter name="y" optional="false" byreference="false" type="object" class="float"/> + <parameter name="width" optional="false" byreference="false" type="object" class="float"/> + <parameter name="height" optional="false" byreference="false" type="object" class="float"/> </method> <method name="setDeviceOffset" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> <return type="void"/> </docblock> - <parameter name="x" optional="false" byreference="false" type="string"/> - <parameter name="y" optional="false" byreference="false" type="string"/> + <parameter name="x" optional="false" byreference="false" type="object" class="float"/> + <parameter name="y" optional="false" byreference="false" type="object" class="float"/> </method> <method name="setFallbackResolution" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> <return type="void"/> </docblock> - <parameter name="x" optional="false" byreference="false" type="string"/> - <parameter name="y" optional="false" byreference="false" type="string"/> + <parameter name="x" optional="false" byreference="false" type="object" class="float"/> + <parameter name="y" optional="false" byreference="false" type="object" class="float"/> </method> <method name="showPage" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/CairoLinearGradient.xml b/dependencies/php/classes/CairoLinearGradient.xml index aea69b3b0f1b6ee334c3ca1452b16c946487e12a..8f2da9297d1e002b8d098572a20d75788513e0ea 100644 --- a/dependencies/php/classes/CairoLinearGradient.xml +++ b/dependencies/php/classes/CairoLinearGradient.xml @@ -22,21 +22,21 @@ <description compact=""/> <return type="void"/> </docblock> - <parameter name="offset" optional="false" byreference="false" type="string"/> - <parameter name="red" optional="false" byreference="false" type="string"/> - <parameter name="green" optional="false" byreference="false" type="string"/> - <parameter name="blue" optional="false" byreference="false" type="string"/> + <parameter name="offset" optional="false" byreference="false" type="object" class="float"/> + <parameter name="red" optional="false" byreference="false" type="object" class="float"/> + <parameter name="green" optional="false" byreference="false" type="object" class="float"/> + <parameter name="blue" optional="false" byreference="false" type="object" class="float"/> </method> <method name="addColorStopRgba" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> <return type="void"/> </docblock> - <parameter name="offset" optional="false" byreference="false" type="string"/> - <parameter name="red" optional="false" byreference="false" type="string"/> - <parameter name="green" optional="false" byreference="false" type="string"/> - <parameter name="blue" optional="false" byreference="false" type="string"/> - <parameter name="alpha" optional="false" byreference="false" type="string"/> + <parameter name="offset" optional="false" byreference="false" type="object" class="float"/> + <parameter name="red" optional="false" byreference="false" type="object" class="float"/> + <parameter name="green" optional="false" byreference="false" type="object" class="float"/> + <parameter name="blue" optional="false" byreference="false" type="object" class="float"/> + <parameter name="alpha" optional="false" byreference="false" type="object" class="float"/> </method> <method name="getColorStopCount" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -49,7 +49,7 @@ <description compact=""/> <return type="array"/> </docblock> - <parameter name="index" optional="false" byreference="false" type="string"/> + <parameter name="index" optional="false" byreference="false" type="int"/> </method> <method name="getExtend" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/CairoMatrix.xml b/dependencies/php/classes/CairoMatrix.xml index 58e3814308a5d05d9388d56a9e4382367dc31ab8..8ff40468c0a7e1dd7f5e0f77790dc0561ad36afd 100644 --- a/dependencies/php/classes/CairoMatrix.xml +++ b/dependencies/php/classes/CairoMatrix.xml @@ -60,8 +60,7 @@ <description compact="The rotate purpose">Object oriented style (method):</description> <return type="void"/> </docblock> - <parameter name="sx" optional="false" byreference="false" type="string"/> - <parameter name="sy" optional="false" byreference="false" type="string"/> + <parameter name="radians" optional="false" byreference="false" type="object" class="float"/> </method> <method name="scale" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -76,23 +75,23 @@ <description compact="The transformDistance purpose"/> <return type="array"/> </docblock> - <parameter name="dx" optional="false" byreference="false" type="string"/> - <parameter name="dy" optional="false" byreference="false" type="string"/> + <parameter name="dx" optional="false" byreference="false" type="object" class="float"/> + <parameter name="dy" optional="false" byreference="false" type="object" class="float"/> </method> <method name="transformPoint" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The transformPoint purpose"/> <return type="array"/> </docblock> - <parameter name="dx" optional="false" byreference="false" type="string"/> - <parameter name="dy" optional="false" byreference="false" type="string"/> + <parameter name="dx" optional="false" byreference="false" type="object" class="float"/> + <parameter name="dy" optional="false" byreference="false" type="object" class="float"/> </method> <method name="translate" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The translate purpose">Object oriented style (method):</description> <return type="void"/> </docblock> - <parameter name="tx" optional="false" byreference="false" type="string"/> - <parameter name="ty" optional="false" byreference="false" type="string"/> + <parameter name="tx" optional="false" byreference="false" type="object" class="float"/> + <parameter name="ty" optional="false" byreference="false" type="object" class="float"/> </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/CairoPattern.xml b/dependencies/php/classes/CairoPattern.xml index d2f5ee24585b475c0db0ed284368f667bf6930bd..7caa7c474904d1bd87d38dc274b84e7062c15deb 100644 --- a/dependencies/php/classes/CairoPattern.xml +++ b/dependencies/php/classes/CairoPattern.xml @@ -23,7 +23,7 @@ <description compact="The setMatrix purpose">Object oriented style (method):</description> <return type="void"/> </docblock> - <parameter name="matrix" optional="false" byreference="false" type="string"/> + <parameter name="matrix" optional="false" byreference="false" type="object" class="CairoMatrix"/> </method> <method name="status" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/CairoPdfSurface.xml b/dependencies/php/classes/CairoPdfSurface.xml index 3a4bf4df6b5a883c8fdbd6a6c7f4c975e2cf35b1..a86ab92b09dde53110af7a368ffd791526b29c05 100644 --- a/dependencies/php/classes/CairoPdfSurface.xml +++ b/dependencies/php/classes/CairoPdfSurface.xml @@ -15,8 +15,8 @@ <description compact="The setSize purpose"/> <return type="void"/> </docblock> - <parameter name="width" optional="false" byreference="false" type="string"/> - <parameter name="height" optional="false" byreference="false" type="string"/> + <parameter name="width" optional="false" byreference="false" type="object" class="float"/> + <parameter name="height" optional="false" byreference="false" type="object" class="float"/> </method> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -87,26 +87,26 @@ <description compact=""/> <return type="void"/> </docblock> - <parameter name="x" optional="false" byreference="false" type="string"/> - <parameter name="y" optional="false" byreference="false" type="string"/> - <parameter name="width" optional="false" byreference="false" type="string"/> - <parameter name="height" optional="false" byreference="false" type="string"/> + <parameter name="x" optional="false" byreference="false" type="object" class="float"/> + <parameter name="y" optional="false" byreference="false" type="object" class="float"/> + <parameter name="width" optional="false" byreference="false" type="object" class="float"/> + <parameter name="height" optional="false" byreference="false" type="object" class="float"/> </method> <method name="setDeviceOffset" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> <return type="void"/> </docblock> - <parameter name="x" optional="false" byreference="false" type="string"/> - <parameter name="y" optional="false" byreference="false" type="string"/> + <parameter name="x" optional="false" byreference="false" type="object" class="float"/> + <parameter name="y" optional="false" byreference="false" type="object" class="float"/> </method> <method name="setFallbackResolution" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> <return type="void"/> </docblock> - <parameter name="x" optional="false" byreference="false" type="string"/> - <parameter name="y" optional="false" byreference="false" type="string"/> + <parameter name="x" optional="false" byreference="false" type="object" class="float"/> + <parameter name="y" optional="false" byreference="false" type="object" class="float"/> </method> <method name="showPage" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/CairoPsSurface.xml b/dependencies/php/classes/CairoPsSurface.xml index 008474fcd5213786627151783766e4391db355f5..c4705640fd47d0c1ad57cf8f357276ea76631dcb 100644 --- a/dependencies/php/classes/CairoPsSurface.xml +++ b/dependencies/php/classes/CairoPsSurface.xml @@ -53,22 +53,22 @@ <description compact="The restrictToLevel purpose"/> <return type="void"/> </docblock> - <parameter name="level" optional="false" byreference="false" type="string"/> + <parameter name="level" optional="false" byreference="false" type="int"/> </method> <method name="setEps" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The setEps purpose"/> <return type="void"/> </docblock> - <parameter name="level" optional="false" byreference="false" type="string"/> + <parameter name="level" optional="false" byreference="false" type="object" class="bool"/> </method> <method name="setSize" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The setSize purpose"/> <return type="void"/> </docblock> - <parameter name="width" optional="false" byreference="false" type="string"/> - <parameter name="height" optional="false" byreference="false" type="string"/> + <parameter name="width" optional="false" byreference="false" type="object" class="float"/> + <parameter name="height" optional="false" byreference="false" type="object" class="float"/> </method> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -139,26 +139,26 @@ <description compact=""/> <return type="void"/> </docblock> - <parameter name="x" optional="false" byreference="false" type="string"/> - <parameter name="y" optional="false" byreference="false" type="string"/> - <parameter name="width" optional="false" byreference="false" type="string"/> - <parameter name="height" optional="false" byreference="false" type="string"/> + <parameter name="x" optional="false" byreference="false" type="object" class="float"/> + <parameter name="y" optional="false" byreference="false" type="object" class="float"/> + <parameter name="width" optional="false" byreference="false" type="object" class="float"/> + <parameter name="height" optional="false" byreference="false" type="object" class="float"/> </method> <method name="setDeviceOffset" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> <return type="void"/> </docblock> - <parameter name="x" optional="false" byreference="false" type="string"/> - <parameter name="y" optional="false" byreference="false" type="string"/> + <parameter name="x" optional="false" byreference="false" type="object" class="float"/> + <parameter name="y" optional="false" byreference="false" type="object" class="float"/> </method> <method name="setFallbackResolution" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> <return type="void"/> </docblock> - <parameter name="x" optional="false" byreference="false" type="string"/> - <parameter name="y" optional="false" byreference="false" type="string"/> + <parameter name="x" optional="false" byreference="false" type="object" class="float"/> + <parameter name="y" optional="false" byreference="false" type="object" class="float"/> </method> <method name="showPage" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/CairoRadialGradient.xml b/dependencies/php/classes/CairoRadialGradient.xml index cbdecc52d9641191ad7028e417afc60425c04f95..58fccf1adb73aa191883acca98ddde675c9b27af 100644 --- a/dependencies/php/classes/CairoRadialGradient.xml +++ b/dependencies/php/classes/CairoRadialGradient.xml @@ -24,21 +24,21 @@ <description compact=""/> <return type="void"/> </docblock> - <parameter name="offset" optional="false" byreference="false" type="string"/> - <parameter name="red" optional="false" byreference="false" type="string"/> - <parameter name="green" optional="false" byreference="false" type="string"/> - <parameter name="blue" optional="false" byreference="false" type="string"/> + <parameter name="offset" optional="false" byreference="false" type="object" class="float"/> + <parameter name="red" optional="false" byreference="false" type="object" class="float"/> + <parameter name="green" optional="false" byreference="false" type="object" class="float"/> + <parameter name="blue" optional="false" byreference="false" type="object" class="float"/> </method> <method name="addColorStopRgba" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> <return type="void"/> </docblock> - <parameter name="offset" optional="false" byreference="false" type="string"/> - <parameter name="red" optional="false" byreference="false" type="string"/> - <parameter name="green" optional="false" byreference="false" type="string"/> - <parameter name="blue" optional="false" byreference="false" type="string"/> - <parameter name="alpha" optional="false" byreference="false" type="string"/> + <parameter name="offset" optional="false" byreference="false" type="object" class="float"/> + <parameter name="red" optional="false" byreference="false" type="object" class="float"/> + <parameter name="green" optional="false" byreference="false" type="object" class="float"/> + <parameter name="blue" optional="false" byreference="false" type="object" class="float"/> + <parameter name="alpha" optional="false" byreference="false" type="object" class="float"/> </method> <method name="getColorStopCount" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -51,7 +51,7 @@ <description compact=""/> <return type="array"/> </docblock> - <parameter name="index" optional="false" byreference="false" type="string"/> + <parameter name="index" optional="false" byreference="false" type="int"/> </method> <method name="getExtend" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/CairoScaledFont.xml b/dependencies/php/classes/CairoScaledFont.xml index e933006dbbf27443b3ce8cc40d1f1bd41e200ab9..43fd632eafe9a35588f4a4c74b638dd576b22192 100644 --- a/dependencies/php/classes/CairoScaledFont.xml +++ b/dependencies/php/classes/CairoScaledFont.xml @@ -57,7 +57,7 @@ <description compact="The glyphExtents purpose"/> <return type="array"/> </docblock> - <parameter name="glyphs" optional="false" byreference="false" type="string"/> + <parameter name="glyphs" optional="false" byreference="false" type="object" class="array"/> </method> <method name="status" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/CairoSolidPattern.xml b/dependencies/php/classes/CairoSolidPattern.xml index 38686f4aa494ada61b5106ddb159c4006cbfc23d..ce2508d495709d659d981a3a8fa0b12b2ec3dbe0 100644 --- a/dependencies/php/classes/CairoSolidPattern.xml +++ b/dependencies/php/classes/CairoSolidPattern.xml @@ -40,7 +40,7 @@ <description compact=""/> <return type="void"/> </docblock> - <parameter name="matrix" optional="false" byreference="false" type="string"/> + <parameter name="matrix" optional="false" byreference="false" type="object" class="CairoMatrix"/> </method> <method name="status" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/CairoSurface.xml b/dependencies/php/classes/CairoSurface.xml index 2a7b4b2a3c4063457615d89bf0354fb547970fb5..981a8b8dc0266105073336797fd6075cc5a593f9 100644 --- a/dependencies/php/classes/CairoSurface.xml +++ b/dependencies/php/classes/CairoSurface.xml @@ -69,26 +69,26 @@ <description compact="The markDirtyRectangle purpose"/> <return type="void"/> </docblock> - <parameter name="x" optional="false" byreference="false" type="string"/> - <parameter name="y" optional="false" byreference="false" type="string"/> - <parameter name="width" optional="false" byreference="false" type="string"/> - <parameter name="height" optional="false" byreference="false" type="string"/> + <parameter name="x" optional="false" byreference="false" type="object" class="float"/> + <parameter name="y" optional="false" byreference="false" type="object" class="float"/> + <parameter name="width" optional="false" byreference="false" type="object" class="float"/> + <parameter name="height" optional="false" byreference="false" type="object" class="float"/> </method> <method name="setDeviceOffset" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The setDeviceOffset purpose"/> <return type="void"/> </docblock> - <parameter name="x" optional="false" byreference="false" type="string"/> - <parameter name="y" optional="false" byreference="false" type="string"/> + <parameter name="x" optional="false" byreference="false" type="object" class="float"/> + <parameter name="y" optional="false" byreference="false" type="object" class="float"/> </method> <method name="setFallbackResolution" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The setFallbackResolution purpose"/> <return type="void"/> </docblock> - <parameter name="x" optional="false" byreference="false" type="string"/> - <parameter name="y" optional="false" byreference="false" type="string"/> + <parameter name="x" optional="false" byreference="false" type="object" class="float"/> + <parameter name="y" optional="false" byreference="false" type="object" class="float"/> </method> <method name="showPage" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/CairoSurfacePattern.xml b/dependencies/php/classes/CairoSurfacePattern.xml index 80d7d962513412748d4c4dee4c0da0991ac664c0..a63d9c8a14de9d37ddfdd3e8862f1637526e08d6 100644 --- a/dependencies/php/classes/CairoSurfacePattern.xml +++ b/dependencies/php/classes/CairoSurfacePattern.xml @@ -38,7 +38,7 @@ <description compact="The setFilter purpose"/> <return type="void"/> </docblock> - <parameter name="filter" optional="false" byreference="false" type="string"/> + <parameter name="filter" optional="false" byreference="false" type="int"/> </method> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -63,7 +63,7 @@ <description compact=""/> <return type="void"/> </docblock> - <parameter name="matrix" optional="false" byreference="false" type="string"/> + <parameter name="matrix" optional="false" byreference="false" type="object" class="CairoMatrix"/> </method> <method name="status" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/CairoSvgSurface.xml b/dependencies/php/classes/CairoSvgSurface.xml index 6f4a6220cbc8a0524ba573c3f9553f9e5f5186b5..a8aaec1e530d9cad73a5a54765b806b279ed9d1f 100644 --- a/dependencies/php/classes/CairoSvgSurface.xml +++ b/dependencies/php/classes/CairoSvgSurface.xml @@ -21,7 +21,7 @@ <description compact="The restrictToVersion purpose"/> <return type="void"/> </docblock> - <parameter name="version" optional="false" byreference="false" type="string"/> + <parameter name="version" optional="false" byreference="false" type="int"/> </method> <method name="versionToString" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -99,26 +99,26 @@ <description compact=""/> <return type="void"/> </docblock> - <parameter name="x" optional="false" byreference="false" type="string"/> - <parameter name="y" optional="false" byreference="false" type="string"/> - <parameter name="width" optional="false" byreference="false" type="string"/> - <parameter name="height" optional="false" byreference="false" type="string"/> + <parameter name="x" optional="false" byreference="false" type="object" class="float"/> + <parameter name="y" optional="false" byreference="false" type="object" class="float"/> + <parameter name="width" optional="false" byreference="false" type="object" class="float"/> + <parameter name="height" optional="false" byreference="false" type="object" class="float"/> </method> <method name="setDeviceOffset" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> <return type="void"/> </docblock> - <parameter name="x" optional="false" byreference="false" type="string"/> - <parameter name="y" optional="false" byreference="false" type="string"/> + <parameter name="x" optional="false" byreference="false" type="object" class="float"/> + <parameter name="y" optional="false" byreference="false" type="object" class="float"/> </method> <method name="setFallbackResolution" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> <return type="void"/> </docblock> - <parameter name="x" optional="false" byreference="false" type="string"/> - <parameter name="y" optional="false" byreference="false" type="string"/> + <parameter name="x" optional="false" byreference="false" type="object" class="float"/> + <parameter name="y" optional="false" byreference="false" type="object" class="float"/> </method> <method name="showPage" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/CallbackFilterIterator.xml b/dependencies/php/classes/CallbackFilterIterator.xml index dd20579a813ea783e10a18a06978427b8694f87b..3fa5b12dab5e20d0683cdb0c4bd8cf64c2708f26 100644 --- a/dependencies/php/classes/CallbackFilterIterator.xml +++ b/dependencies/php/classes/CallbackFilterIterator.xml @@ -12,7 +12,7 @@ <method name="accept" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Calls the callback with the current value, the current key and the inner iterator as arguments">This method calls the callback with the current value, current key and the inner iterator.</description> - <return type="string"/> + <return type="bool"/> </docblock> </method> <method name="accept" abstract="false" static="false" visibility="public" final="false"> diff --git a/dependencies/php/classes/Closure.xml b/dependencies/php/classes/Closure.xml index aa085ded02cefa83889d0e2cc54bb32627547540..112816e81e37a2b1ec474281a6a935343e446efb 100644 --- a/dependencies/php/classes/Closure.xml +++ b/dependencies/php/classes/Closure.xml @@ -33,7 +33,7 @@ </method> <method name="fromCallable" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Converts a callable into a closure."/> + <description compact="Converts a callable into a closure"/> <return type="Closure"/> </docblock> <parameter name="callable" optional="false" byreference="false" type="object" class="callable"/> diff --git a/dependencies/php/classes/CommonMark_CQL.xml b/dependencies/php/classes/CommonMark_CQL.xml new file mode 100644 index 0000000000000000000000000000000000000000..fca0052711246a75508404b8b3fad98ba165a5a4 --- /dev/null +++ b/dependencies/php/classes/CommonMark_CQL.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="CommonMark\CQL" namespace="CommonMark" name="CQL"> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="CQL Construction"/> + <return type="void"/> + </docblock> + <parameter name="query" optional="false" byreference="false" type="string"/> + </constructor> + <method name="__invoke" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="CQL Execution"/> + <return type="void"/> + </docblock> + <parameter name="root" optional="false" byreference="false" type="object" class="\CommonMark\Node"/> + <parameter name="handler" optional="false" byreference="false" type="object" class="callable"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/CommonMark_Interfaces_IVisitor.xml b/dependencies/php/classes/CommonMark_Interfaces_IVisitor.xml new file mode 100644 index 0000000000000000000000000000000000000000..33933df4fcb15b9c365244b0289f7f9de82bb201 --- /dev/null +++ b/dependencies/php/classes/CommonMark_Interfaces_IVisitor.xml @@ -0,0 +1,32 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="CommonMark\Interfaces\IVisitor" namespace="CommonMark\Interfaces" name="IVisitor"> + <constant name="Done" value=""> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="Enter" value=""> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="Leave" value=""> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <method name="enter" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Visitation"/> + <return type="?int|IVisitable"/> + </docblock> + <parameter name="visitable" optional="false" byreference="false" type="object" class="IVisitable"/> + </method> + <method name="leave" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Visitation"/> + <return type="?int|IVisitable"/> + </docblock> + <parameter name="visitable" optional="false" byreference="false" type="object" class="IVisitable"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/CommonMark_Node.xml b/dependencies/php/classes/CommonMark_Node.xml new file mode 100644 index 0000000000000000000000000000000000000000..57c854adf9524f3dfa26859e68538255117933f2 --- /dev/null +++ b/dependencies/php/classes/CommonMark_Node.xml @@ -0,0 +1,106 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="CommonMark\Node" namespace="CommonMark" name="Node"> + <implements name="CommonMark\Interfaces\IVisitable" full="CommonMark\Interfaces\IVisitable"/> + <member name="parent" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="previous" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="next" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="lastChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="firstChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="startLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="startColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <method name="appendChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="AST Manipulation"/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="prependChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="AST Manipulation"/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertAfter" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="AST Manipulation"/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertBefore" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="AST Manipulation"/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="replace" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="AST Manipulation"/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="target" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="unlink" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="AST Manipulation"/> + <return type="void"/> + </docblock> + </method> + <method name="accept" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Visitation"/> + <return type="void"/> + </docblock> + <parameter name="visitor" optional="false" byreference="false" type="object" class="CommonMark\Interfaces\IVisitor"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/CommonMark_Node_BlockQuote.xml b/dependencies/php/classes/CommonMark_Node_BlockQuote.xml new file mode 100644 index 0000000000000000000000000000000000000000..84d2e6a53f89b09e58fc9c0508759ec9a2c02042 --- /dev/null +++ b/dependencies/php/classes/CommonMark_Node_BlockQuote.xml @@ -0,0 +1,106 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="CommonMark\Node\BlockQuote" namespace="CommonMark\Node" name="BlockQuote"> + <implements name="CommonMark\Interfaces\IVisitable" full="CommonMark\Interfaces\IVisitable"/> + <member name="parent" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="previous" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="next" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="lastChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="firstChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="startLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="startColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <method name="appendChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="prependChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertAfter" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertBefore" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="replace" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="target" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="unlink" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> + <method name="accept" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="visitor" optional="false" byreference="false" type="object" class="CommonMark\Interfaces\IVisitor"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/CommonMark_Node_BulletList.xml b/dependencies/php/classes/CommonMark_Node_BulletList.xml new file mode 100644 index 0000000000000000000000000000000000000000..6f3aa39dee074b2bd1045b74d5b9bd1211c0241d --- /dev/null +++ b/dependencies/php/classes/CommonMark_Node_BulletList.xml @@ -0,0 +1,139 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="CommonMark\Node\BulletList" namespace="CommonMark\Node" name="BulletList"> + <implements name="CommonMark\Interfaces\IVisitable" full="CommonMark\Interfaces\IVisitable"/> + <member name="parent" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="previous" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="next" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="lastChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="firstChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="startLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="startColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="tight" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="bool"/> + </docblock> + </member> + <member name="delimiter" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="BulletList Construction"/> + <return type="void"/> + </docblock> + </constructor> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="BulletList Construction"/> + <return type="void"/> + </docblock> + <parameter name="tight" optional="false" byreference="false" type="int"/> + </constructor> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="BulletList Construction"/> + <return type="void"/> + </docblock> + <parameter name="tight" optional="false" byreference="false" type="int"/> + <parameter name="delimiter" optional="false" byreference="false" type="int"/> + </constructor> + <method name="appendChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="prependChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertAfter" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertBefore" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="replace" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="target" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="unlink" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> + <method name="accept" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="visitor" optional="false" byreference="false" type="object" class="CommonMark\Interfaces\IVisitor"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/CommonMark_Node_Code.xml b/dependencies/php/classes/CommonMark_Node_Code.xml new file mode 100644 index 0000000000000000000000000000000000000000..37b4b8694ede36ae8c27e406eb974f7a21ea6136 --- /dev/null +++ b/dependencies/php/classes/CommonMark_Node_Code.xml @@ -0,0 +1,125 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="CommonMark\Node\Code" namespace="CommonMark\Node" name="Code"> + <implements name="CommonMark\Interfaces\IVisitable" full="CommonMark\Interfaces\IVisitable"/> + <member name="parent" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="previous" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="next" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="lastChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="firstChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="startLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="startColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="literal" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?string"/> + </docblock> + </member> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </constructor> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="literal" optional="false" byreference="false" type="string"/> + </constructor> + <method name="appendChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="prependChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertAfter" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertBefore" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="replace" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="target" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="unlink" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> + <method name="accept" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="visitor" optional="false" byreference="false" type="object" class="CommonMark\Interfaces\IVisitor"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/CommonMark_Node_CodeBlock.xml b/dependencies/php/classes/CommonMark_Node_CodeBlock.xml new file mode 100644 index 0000000000000000000000000000000000000000..47ce54a6e35888647ac4de0a74af6d8ecfdb752b --- /dev/null +++ b/dependencies/php/classes/CommonMark_Node_CodeBlock.xml @@ -0,0 +1,139 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="CommonMark\Node\CodeBlock" namespace="CommonMark\Node" name="CodeBlock"> + <implements name="CommonMark\Interfaces\IVisitable" full="CommonMark\Interfaces\IVisitable"/> + <member name="parent" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="previous" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="next" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="lastChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="firstChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="startLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="startColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="literal" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?string"/> + </docblock> + </member> + <member name="fence" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?string"/> + </docblock> + </member> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </constructor> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="literal" optional="false" byreference="false" type="string"/> + </constructor> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="CodeBlock Construction"/> + <return type="void"/> + </docblock> + <parameter name="fence" optional="false" byreference="false" type="string"/> + <parameter name="literal" optional="false" byreference="false" type="string"/> + </constructor> + <method name="appendChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="prependChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertAfter" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertBefore" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="replace" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="target" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="unlink" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> + <method name="accept" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="visitor" optional="false" byreference="false" type="object" class="CommonMark\Interfaces\IVisitor"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/CommonMark_Node_CustomBlock.xml b/dependencies/php/classes/CommonMark_Node_CustomBlock.xml new file mode 100644 index 0000000000000000000000000000000000000000..fb3e1a6f9a71ab63436f6c01861fc9065e3a820a --- /dev/null +++ b/dependencies/php/classes/CommonMark_Node_CustomBlock.xml @@ -0,0 +1,118 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="CommonMark\Node\CustomBlock" namespace="CommonMark\Node" name="CustomBlock"> + <implements name="CommonMark\Interfaces\IVisitable" full="CommonMark\Interfaces\IVisitable"/> + <member name="parent" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="previous" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="next" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="lastChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="firstChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="startLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="startColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="onEnter" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?string"/> + </docblock> + </member> + <member name="onLeave" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?string"/> + </docblock> + </member> + <method name="appendChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="prependChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertAfter" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertBefore" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="replace" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="target" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="unlink" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> + <method name="accept" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="visitor" optional="false" byreference="false" type="object" class="CommonMark\Interfaces\IVisitor"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/CommonMark_Node_CustomInline.xml b/dependencies/php/classes/CommonMark_Node_CustomInline.xml new file mode 100644 index 0000000000000000000000000000000000000000..e8fdf7b55e41be60a233d25eebc66a12a270cd70 --- /dev/null +++ b/dependencies/php/classes/CommonMark_Node_CustomInline.xml @@ -0,0 +1,118 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="CommonMark\Node\CustomInline" namespace="CommonMark\Node" name="CustomInline"> + <implements name="CommonMark\Interfaces\IVisitable" full="CommonMark\Interfaces\IVisitable"/> + <member name="parent" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="previous" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="next" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="lastChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="firstChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="startLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="startColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="onEnter" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?string"/> + </docblock> + </member> + <member name="onLeave" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?string"/> + </docblock> + </member> + <method name="appendChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="prependChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertAfter" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertBefore" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="replace" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="target" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="unlink" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> + <method name="accept" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="visitor" optional="false" byreference="false" type="object" class="CommonMark\Interfaces\IVisitor"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/CommonMark_Node_Document.xml b/dependencies/php/classes/CommonMark_Node_Document.xml new file mode 100644 index 0000000000000000000000000000000000000000..593a06ac99fbc506b15a0af71f6f6de25d931bd6 --- /dev/null +++ b/dependencies/php/classes/CommonMark_Node_Document.xml @@ -0,0 +1,106 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="CommonMark\Node\Document" namespace="CommonMark\Node" name="Document"> + <implements name="CommonMark\Interfaces\IVisitable" full="CommonMark\Interfaces\IVisitable"/> + <member name="parent" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="previous" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="next" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="lastChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="firstChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="startLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="startColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <method name="appendChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="prependChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertAfter" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertBefore" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="replace" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="target" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="unlink" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> + <method name="accept" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="visitor" optional="false" byreference="false" type="object" class="CommonMark\Interfaces\IVisitor"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/CommonMark_Node_HTMLBlock.xml b/dependencies/php/classes/CommonMark_Node_HTMLBlock.xml new file mode 100644 index 0000000000000000000000000000000000000000..f578d73327885b36cc9f32c7e0d4860cd6242cb3 --- /dev/null +++ b/dependencies/php/classes/CommonMark_Node_HTMLBlock.xml @@ -0,0 +1,125 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="CommonMark\Node\HTMLBlock" namespace="CommonMark\Node" name="HTMLBlock"> + <implements name="CommonMark\Interfaces\IVisitable" full="CommonMark\Interfaces\IVisitable"/> + <member name="parent" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="previous" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="next" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="lastChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="firstChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="startLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="startColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="literal" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?string"/> + </docblock> + </member> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </constructor> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="literal" optional="false" byreference="false" type="string"/> + </constructor> + <method name="appendChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="prependChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertAfter" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertBefore" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="replace" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="target" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="unlink" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> + <method name="accept" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="visitor" optional="false" byreference="false" type="object" class="CommonMark\Interfaces\IVisitor"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/CommonMark_Node_HTMLInline.xml b/dependencies/php/classes/CommonMark_Node_HTMLInline.xml new file mode 100644 index 0000000000000000000000000000000000000000..1f5d4537d649e17efadbfaefb3e4ff6ccafb694d --- /dev/null +++ b/dependencies/php/classes/CommonMark_Node_HTMLInline.xml @@ -0,0 +1,125 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="CommonMark\Node\HTMLInline" namespace="CommonMark\Node" name="HTMLInline"> + <implements name="CommonMark\Interfaces\IVisitable" full="CommonMark\Interfaces\IVisitable"/> + <member name="parent" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="previous" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="next" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="lastChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="firstChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="startLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="startColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="literal" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?string"/> + </docblock> + </member> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </constructor> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="literal" optional="false" byreference="false" type="string"/> + </constructor> + <method name="appendChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="prependChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertAfter" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertBefore" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="replace" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="target" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="unlink" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> + <method name="accept" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="visitor" optional="false" byreference="false" type="object" class="CommonMark\Interfaces\IVisitor"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/CommonMark_Node_Heading.xml b/dependencies/php/classes/CommonMark_Node_Heading.xml new file mode 100644 index 0000000000000000000000000000000000000000..c51f54a4b46ce5a57259c5a72b79ab465ea98858 --- /dev/null +++ b/dependencies/php/classes/CommonMark_Node_Heading.xml @@ -0,0 +1,125 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="CommonMark\Node\Heading" namespace="CommonMark\Node" name="Heading"> + <implements name="CommonMark\Interfaces\IVisitable" full="CommonMark\Interfaces\IVisitable"/> + <member name="parent" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="previous" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="next" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="lastChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="firstChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="startLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="startColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="level" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Heading Construction"/> + <return type="void"/> + </docblock> + </constructor> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Heading Construction"/> + <return type="void"/> + </docblock> + <parameter name="level" optional="false" byreference="false" type="int"/> + </constructor> + <method name="appendChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="prependChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertAfter" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertBefore" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="replace" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="target" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="unlink" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> + <method name="accept" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="visitor" optional="false" byreference="false" type="object" class="CommonMark\Interfaces\IVisitor"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/CommonMark_Node_Image.xml b/dependencies/php/classes/CommonMark_Node_Image.xml new file mode 100644 index 0000000000000000000000000000000000000000..0480b749a85f64d996247d209ba15899efc03806 --- /dev/null +++ b/dependencies/php/classes/CommonMark_Node_Image.xml @@ -0,0 +1,139 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="CommonMark\Node\Image" namespace="CommonMark\Node" name="Image"> + <implements name="CommonMark\Interfaces\IVisitable" full="CommonMark\Interfaces\IVisitable"/> + <member name="parent" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="previous" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="next" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="lastChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="firstChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="startLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="startColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="url" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?string"/> + </docblock> + </member> + <member name="title" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?string"/> + </docblock> + </member> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Image Construction"/> + <return type="void"/> + </docblock> + </constructor> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Image Construction"/> + <return type="void"/> + </docblock> + <parameter name="url" optional="false" byreference="false" type="string"/> + </constructor> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Image Construction"/> + <return type="void"/> + </docblock> + <parameter name="url" optional="false" byreference="false" type="string"/> + <parameter name="title" optional="false" byreference="false" type="string"/> + </constructor> + <method name="appendChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="prependChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertAfter" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertBefore" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="replace" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="target" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="unlink" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> + <method name="accept" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="visitor" optional="false" byreference="false" type="object" class="CommonMark\Interfaces\IVisitor"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/CommonMark_Node_Item.xml b/dependencies/php/classes/CommonMark_Node_Item.xml new file mode 100644 index 0000000000000000000000000000000000000000..7fb131d88ed616edd9bb3fce2b7106b4bd5f8e15 --- /dev/null +++ b/dependencies/php/classes/CommonMark_Node_Item.xml @@ -0,0 +1,106 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="CommonMark\Node\Item" namespace="CommonMark\Node" name="Item"> + <implements name="CommonMark\Interfaces\IVisitable" full="CommonMark\Interfaces\IVisitable"/> + <member name="parent" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="previous" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="next" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="lastChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="firstChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="startLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="startColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <method name="appendChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="prependChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertAfter" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertBefore" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="replace" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="target" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="unlink" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> + <method name="accept" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="visitor" optional="false" byreference="false" type="object" class="CommonMark\Interfaces\IVisitor"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/CommonMark_Node_LineBreak.xml b/dependencies/php/classes/CommonMark_Node_LineBreak.xml new file mode 100644 index 0000000000000000000000000000000000000000..bfae64677f8582010be275f575cb8f384a11b1b9 --- /dev/null +++ b/dependencies/php/classes/CommonMark_Node_LineBreak.xml @@ -0,0 +1,106 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="CommonMark\Node\LineBreak" namespace="CommonMark\Node" name="LineBreak"> + <implements name="CommonMark\Interfaces\IVisitable" full="CommonMark\Interfaces\IVisitable"/> + <member name="parent" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="previous" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="next" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="lastChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="firstChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="startLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="startColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <method name="appendChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="prependChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertAfter" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertBefore" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="replace" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="target" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="unlink" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> + <method name="accept" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="visitor" optional="false" byreference="false" type="object" class="CommonMark\Interfaces\IVisitor"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/CommonMark_Node_Link.xml b/dependencies/php/classes/CommonMark_Node_Link.xml new file mode 100644 index 0000000000000000000000000000000000000000..98f08554d9a27e64ccc946f1df81466f4f86fa43 --- /dev/null +++ b/dependencies/php/classes/CommonMark_Node_Link.xml @@ -0,0 +1,139 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="CommonMark\Node\Link" namespace="CommonMark\Node" name="Link"> + <implements name="CommonMark\Interfaces\IVisitable" full="CommonMark\Interfaces\IVisitable"/> + <member name="parent" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="previous" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="next" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="lastChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="firstChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="startLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="startColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="url" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?string"/> + </docblock> + </member> + <member name="title" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?string"/> + </docblock> + </member> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Link Construction"/> + <return type="void"/> + </docblock> + </constructor> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Link Construction"/> + <return type="void"/> + </docblock> + <parameter name="url" optional="false" byreference="false" type="string"/> + </constructor> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Link Construction"/> + <return type="void"/> + </docblock> + <parameter name="url" optional="false" byreference="false" type="string"/> + <parameter name="title" optional="false" byreference="false" type="string"/> + </constructor> + <method name="appendChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="prependChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertAfter" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertBefore" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="replace" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="target" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="unlink" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> + <method name="accept" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="visitor" optional="false" byreference="false" type="object" class="CommonMark\Interfaces\IVisitor"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/CommonMark_Node_OrderedList.xml b/dependencies/php/classes/CommonMark_Node_OrderedList.xml new file mode 100644 index 0000000000000000000000000000000000000000..4bf8b7fc922cf4057081930ed39a2dc54bb8be8b --- /dev/null +++ b/dependencies/php/classes/CommonMark_Node_OrderedList.xml @@ -0,0 +1,154 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="CommonMark\Node\OrderedList" namespace="CommonMark\Node" name="OrderedList"> + <implements name="CommonMark\Interfaces\IVisitable" full="CommonMark\Interfaces\IVisitable"/> + <member name="parent" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="previous" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="next" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="lastChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="firstChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="startLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="startColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="tight" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="bool"/> + </docblock> + </member> + <member name="delimiter" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="start" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="OrderedList Construction"/> + <return type="void"/> + </docblock> + </constructor> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="OrderedList Construction"/> + <return type="void"/> + </docblock> + <parameter name="tight" optional="false" byreference="false" type="int"/> + </constructor> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="OrderedList Construction"/> + <return type="void"/> + </docblock> + <parameter name="tight" optional="false" byreference="false" type="int"/> + <parameter name="delimiter" optional="false" byreference="false" type="int"/> + </constructor> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="OrderedList Construction"/> + <return type="void"/> + </docblock> + <parameter name="tight" optional="false" byreference="false" type="int"/> + <parameter name="delimiter" optional="false" byreference="false" type="int"/> + <parameter name="start" optional="false" byreference="false" type="int"/> + </constructor> + <method name="appendChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="prependChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertAfter" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertBefore" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="replace" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="target" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="unlink" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> + <method name="accept" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="visitor" optional="false" byreference="false" type="object" class="CommonMark\Interfaces\IVisitor"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/CommonMark_Node_Paragraph.xml b/dependencies/php/classes/CommonMark_Node_Paragraph.xml new file mode 100644 index 0000000000000000000000000000000000000000..a0c93c07d6759a5e4d5034ec33f1e589435eef41 --- /dev/null +++ b/dependencies/php/classes/CommonMark_Node_Paragraph.xml @@ -0,0 +1,106 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="CommonMark\Node\Paragraph" namespace="CommonMark\Node" name="Paragraph"> + <implements name="CommonMark\Interfaces\IVisitable" full="CommonMark\Interfaces\IVisitable"/> + <member name="parent" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="previous" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="next" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="lastChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="firstChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="startLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="startColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <method name="appendChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="prependChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertAfter" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertBefore" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="replace" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="target" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="unlink" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> + <method name="accept" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="visitor" optional="false" byreference="false" type="object" class="CommonMark\Interfaces\IVisitor"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/CommonMark_Node_SoftBreak.xml b/dependencies/php/classes/CommonMark_Node_SoftBreak.xml new file mode 100644 index 0000000000000000000000000000000000000000..5f6f2f07aba1a582e78d9d6f75650cdd90f361fd --- /dev/null +++ b/dependencies/php/classes/CommonMark_Node_SoftBreak.xml @@ -0,0 +1,106 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="CommonMark\Node\SoftBreak" namespace="CommonMark\Node" name="SoftBreak"> + <implements name="CommonMark\Interfaces\IVisitable" full="CommonMark\Interfaces\IVisitable"/> + <member name="parent" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="previous" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="next" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="lastChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="firstChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="startLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="startColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <method name="appendChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="prependChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertAfter" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertBefore" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="replace" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="target" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="unlink" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> + <method name="accept" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="visitor" optional="false" byreference="false" type="object" class="CommonMark\Interfaces\IVisitor"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/CommonMark_Node_Text.xml b/dependencies/php/classes/CommonMark_Node_Text.xml new file mode 100644 index 0000000000000000000000000000000000000000..b06a45c2868ab342b2d08cb2952146d5e3058880 --- /dev/null +++ b/dependencies/php/classes/CommonMark_Node_Text.xml @@ -0,0 +1,125 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="CommonMark\Node\Text" namespace="CommonMark\Node" name="Text"> + <implements name="CommonMark\Interfaces\IVisitable" full="CommonMark\Interfaces\IVisitable"/> + <member name="parent" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="previous" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="next" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="lastChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="firstChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="startLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="startColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="literal" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?string"/> + </docblock> + </member> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Text Construction"/> + <return type="void"/> + </docblock> + </constructor> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Text Construction"/> + <return type="void"/> + </docblock> + <parameter name="literal" optional="false" byreference="false" type="string"/> + </constructor> + <method name="appendChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="prependChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertAfter" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertBefore" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="replace" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="target" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="unlink" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> + <method name="accept" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="visitor" optional="false" byreference="false" type="object" class="CommonMark\Interfaces\IVisitor"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/CommonMark_Node_Text_Emphasis.xml b/dependencies/php/classes/CommonMark_Node_Text_Emphasis.xml new file mode 100644 index 0000000000000000000000000000000000000000..b612c1f723095716a4a6d130ebed6dcde8638da8 --- /dev/null +++ b/dependencies/php/classes/CommonMark_Node_Text_Emphasis.xml @@ -0,0 +1,106 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="CommonMark\Node\Text\Emphasis" namespace="CommonMark\Node\Text" name="Emphasis"> + <implements name="CommonMark\Interfaces\IVisitable" full="CommonMark\Interfaces\IVisitable"/> + <member name="parent" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="previous" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="next" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="lastChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="firstChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="startLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="startColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <method name="appendChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="prependChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertAfter" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertBefore" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="replace" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="target" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="unlink" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> + <method name="accept" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="visitor" optional="false" byreference="false" type="object" class="CommonMark\Interfaces\IVisitor"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/CommonMark_Node_Text_Strong.xml b/dependencies/php/classes/CommonMark_Node_Text_Strong.xml new file mode 100644 index 0000000000000000000000000000000000000000..0593682e358586b6a400c42ce361d1a782c25044 --- /dev/null +++ b/dependencies/php/classes/CommonMark_Node_Text_Strong.xml @@ -0,0 +1,106 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="CommonMark\Node\Text\Strong" namespace="CommonMark\Node\Text" name="Strong"> + <implements name="CommonMark\Interfaces\IVisitable" full="CommonMark\Interfaces\IVisitable"/> + <member name="parent" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="previous" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="next" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="lastChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="firstChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="startLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="startColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <method name="appendChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="prependChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertAfter" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertBefore" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="replace" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="target" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="unlink" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> + <method name="accept" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="visitor" optional="false" byreference="false" type="object" class="CommonMark\Interfaces\IVisitor"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/CommonMark_Node_ThematicBreak.xml b/dependencies/php/classes/CommonMark_Node_ThematicBreak.xml new file mode 100644 index 0000000000000000000000000000000000000000..84ec2ff69c58954c2fa638a2d5a27e0ac835a5e1 --- /dev/null +++ b/dependencies/php/classes/CommonMark_Node_ThematicBreak.xml @@ -0,0 +1,106 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="CommonMark\Node\ThematicBreak" namespace="CommonMark\Node" name="ThematicBreak"> + <implements name="CommonMark\Interfaces\IVisitable" full="CommonMark\Interfaces\IVisitable"/> + <member name="parent" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="previous" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="next" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="lastChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="firstChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="?Node"/> + </docblock> + </member> + <member name="startLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endLine" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="startColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <member name="endColumn" static="false" visibility="public"> + <default>null</default> + <docblock> + <var type="int"/> + </docblock> + </member> + <method name="appendChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="prependChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="child" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertAfter" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="insertBefore" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="sibling" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="replace" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="CommonMark\Node"/> + </docblock> + <parameter name="target" optional="false" byreference="false" type="object" class="CommonMark\Node"/> + </method> + <method name="unlink" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> + <method name="accept" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="visitor" optional="false" byreference="false" type="object" class="CommonMark\Interfaces\IVisitor"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/CommonMark_Parser.xml b/dependencies/php/classes/CommonMark_Parser.xml new file mode 100644 index 0000000000000000000000000000000000000000..4e1ffa065dbd4ba1c57e3579d6c913b67fafc1c5 --- /dev/null +++ b/dependencies/php/classes/CommonMark_Parser.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="CommonMark\Parser" namespace="CommonMark" name="Parser"> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Parsing"/> + <return type="void"/> + </docblock> + <parameter name="options" optional="true" byreference="false" type="int"/> + </constructor> + <method name="parse" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Parsing"/> + <return type="void"/> + </docblock> + <parameter name="buffer" optional="false" byreference="false" type="string"/> + </method> + <method name="finish" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Parsing"/> + <return type="CommonMark\Node"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/CompileError.xml b/dependencies/php/classes/CompileError.xml new file mode 100644 index 0000000000000000000000000000000000000000..c275b27f1ef07600565de963cc68657f7d6ea529 --- /dev/null +++ b/dependencies/php/classes/CompileError.xml @@ -0,0 +1,86 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="CompileError" namespace="" name="CompileError"> + <extends name="Error" full="Error"/> + <member name="message" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The error message"/> + <var type="string"/> + </docblock> + </member> + <member name="code" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The error code"/> + <var type="int"/> + </docblock> + </member> + <member name="file" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The filename where the error happened"/> + <var type="string"/> + </docblock> + </member> + <member name="line" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The line where the error happened"/> + <var type="int"/> + </docblock> + </member> + <method name="getMessage" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getPrevious" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="Throwable"/> + </docblock> + </method> + <method name="getCode" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="mixed"/> + </docblock> + </method> + <method name="getFile" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getLine" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + </method> + <method name="getTrace" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + </method> + <method name="getTraceAsString" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="__toString" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="__clone" abstract="false" static="false" final="true"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Componere_Abstract_Definition.xml b/dependencies/php/classes/Componere_Abstract_Definition.xml new file mode 100644 index 0000000000000000000000000000000000000000..0a155ecd28581c32ff275b336040b3f58a9809f9 --- /dev/null +++ b/dependencies/php/classes/Componere_Abstract_Definition.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Componere\Abstract\Definition" namespace="Componere\Abstract" name="Definition"> + <method name="addInterface" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Add Interface"/> + <return type="Definition"/> + </docblock> + <parameter name="interface" optional="false" byreference="false" type="string"/> + </method> + <method name="addMethod" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Add Method"/> + <return type="Definition"/> + </docblock> + <parameter name="name" optional="false" byreference="false" type="string"/> + <parameter name="method" optional="false" byreference="false" type="object" class="\Componere\Method"/> + </method> + <method name="addTrait" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Add Trait"/> + <return type="Definition"/> + </docblock> + <parameter name="trait" optional="false" byreference="false" type="string"/> + </method> + <method name="getReflector" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Reflection"/> + <return type="\ReflectionClass"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Componere_Definition.xml b/dependencies/php/classes/Componere_Definition.xml new file mode 100644 index 0000000000000000000000000000000000000000..0567bc99a3f979b3cdb69e3e570f170632cd5157 --- /dev/null +++ b/dependencies/php/classes/Componere_Definition.xml @@ -0,0 +1,105 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Componere\Definition" namespace="Componere" name="Definition"> + <extends name="Componere\Definition" full="Componere\Definition"/> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Definition Construction"/> + <return type="void"/> + </docblock> + <parameter name="name" optional="false" byreference="false" type="string"/> + </constructor> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Definition Construction"/> + <return type="void"/> + </docblock> + <parameter name="name" optional="false" byreference="false" type="string"/> + <parameter name="parent" optional="false" byreference="false" type="string"/> + </constructor> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Definition Construction"/> + <return type="void"/> + </docblock> + <parameter name="name" optional="false" byreference="false" type="string"/> + <parameter name="interfaces" optional="false" byreference="false" type="object" class="array"/> + </constructor> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Definition Construction"/> + <return type="void"/> + </docblock> + <parameter name="name" optional="false" byreference="false" type="string"/> + <parameter name="parent" optional="false" byreference="false" type="string"/> + <parameter name="interfaces" optional="false" byreference="false" type="object" class="array"/> + </constructor> + <method name="addConstant" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Add Constant"/> + <return type="Definition"/> + </docblock> + <parameter name="name" optional="false" byreference="false" type="string"/> + <parameter name="value" optional="false" byreference="false" type="object" class="\Componere\Value"/> + </method> + <method name="addProperty" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Add Property"/> + <return type="Definition"/> + </docblock> + <parameter name="name" optional="false" byreference="false" type="string"/> + <parameter name="value" optional="false" byreference="false" type="object" class="\Componere\Value"/> + </method> + <method name="register" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Registration"/> + <return type="void"/> + </docblock> + </method> + <method name="isRegistered" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="State Detection"/> + <return type="bool"/> + </docblock> + </method> + <method name="getClosure" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get Closure"/> + <return type="\Closure"/> + </docblock> + <parameter name="name" optional="false" byreference="false" type="string"/> + </method> + <method name="getClosures" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get Closures"/> + <return type="array"/> + </docblock> + </method> + <method name="addInterface" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="Definition"/> + </docblock> + <parameter name="interface" optional="false" byreference="false" type="string"/> + </method> + <method name="addMethod" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="Definition"/> + </docblock> + <parameter name="name" optional="false" byreference="false" type="string"/> + <parameter name="method" optional="false" byreference="false" type="object" class="\Componere\Method"/> + </method> + <method name="addTrait" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="Definition"/> + </docblock> + <parameter name="trait" optional="false" byreference="false" type="string"/> + </method> + <method name="getReflector" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="\ReflectionClass"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Componere_Method.xml b/dependencies/php/classes/Componere_Method.xml new file mode 100644 index 0000000000000000000000000000000000000000..3e21684607ded68b4e2012e9e143ad26aad9122a --- /dev/null +++ b/dependencies/php/classes/Componere_Method.xml @@ -0,0 +1,34 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Componere\Method" namespace="Componere" name="Method"> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Method Construction"/> + <return type="void"/> + </docblock> + <parameter name="closure" optional="false" byreference="false" type="object" class="\Closure"/> + </constructor> + <method name="setPrivate" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Accessibility Modification"/> + <return type="Method"/> + </docblock> + </method> + <method name="setProtected" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Accessibility Modification"/> + <return type="Method"/> + </docblock> + </method> + <method name="setStatic" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Accessibility Modification"/> + <return type="Method"/> + </docblock> + </method> + <method name="getReflector" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Reflection"/> + <return type="\ReflectionMethod"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Componere_Patch.xml b/dependencies/php/classes/Componere_Patch.xml new file mode 100644 index 0000000000000000000000000000000000000000..0c47db42531231ae7ed4f8f7087751b2dd007482 --- /dev/null +++ b/dependencies/php/classes/Componere_Patch.xml @@ -0,0 +1,85 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Componere\Patch" namespace="Componere" name="Patch"> + <extends name="Componere\Patch" full="Componere\Patch"/> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Patch Construction"/> + <return type="void"/> + </docblock> + <parameter name="instance" optional="false" byreference="false" type="object" class="object"/> + </constructor> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Patch Construction"/> + <return type="void"/> + </docblock> + <parameter name="instance" optional="false" byreference="false" type="object" class="object"/> + <parameter name="interfaces" optional="false" byreference="false" type="object" class="array"/> + </constructor> + <method name="apply" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Application"/> + <return type="void"/> + </docblock> + </method> + <method name="revert" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Reversal"/> + <return type="void"/> + </docblock> + </method> + <method name="isApplied" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="State Detection"/> + <return type="bool"/> + </docblock> + </method> + <method name="derive" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Patch Derivation"/> + <return type="Patch"/> + </docblock> + <parameter name="instance" optional="false" byreference="false" type="object" class="object"/> + </method> + <method name="getClosure" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get Closure"/> + <return type="\Closure"/> + </docblock> + <parameter name="name" optional="false" byreference="false" type="string"/> + </method> + <method name="getClosures" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get Closures"/> + <return type="array"/> + </docblock> + </method> + <method name="addInterface" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="Definition"/> + </docblock> + <parameter name="interface" optional="false" byreference="false" type="string"/> + </method> + <method name="addMethod" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="Definition"/> + </docblock> + <parameter name="name" optional="false" byreference="false" type="string"/> + <parameter name="method" optional="false" byreference="false" type="object" class="\Componere\Method"/> + </method> + <method name="addTrait" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="Definition"/> + </docblock> + <parameter name="trait" optional="false" byreference="false" type="string"/> + </method> + <method name="getReflector" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="\ReflectionClass"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Componere_Value.xml b/dependencies/php/classes/Componere_Value.xml new file mode 100644 index 0000000000000000000000000000000000000000..eb055117c10b25b13f739bd9941cd03bfcd8551e --- /dev/null +++ b/dependencies/php/classes/Componere_Value.xml @@ -0,0 +1,52 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Componere\Value" namespace="Componere" name="Value"> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Value Construction"/> + <return type="void"/> + </docblock> + <parameter name="default" optional="true" byreference="false" type=""/> + </constructor> + <method name="setPrivate" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Accessibility Modification"/> + <return type="Value"/> + </docblock> + </method> + <method name="setProtected" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Accessibility Modification"/> + <return type="Value"/> + </docblock> + </method> + <method name="setStatic" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Accessibility Modification"/> + <return type="Value"/> + </docblock> + </method> + <method name="isPrivate" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Accessibility Detection"/> + <return type="bool"/> + </docblock> + </method> + <method name="isProtected" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Accessibility Detection"/> + <return type="bool"/> + </docblock> + </method> + <method name="isStatic" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Accessibility Detection"/> + <return type="bool"/> + </docblock> + </method> + <method name="hasDefault" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Value Interaction"/> + <return type="bool"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Cond.xml b/dependencies/php/classes/Cond.xml index fbc2de5e48cabeec1b77d1456c34c23a9cc4069f..1ec55c78c9699de0abf8fcb7f1517487fcaa0190 100644 --- a/dependencies/php/classes/Cond.xml +++ b/dependencies/php/classes/Cond.xml @@ -3,37 +3,37 @@ <method name="broadcast" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact="Broadcast a Condition"/> - <return type="boolean"/> + <return type="bool"/> </docblock> - <parameter name="condition" optional="false" byreference="false" type="object" class="long"/> + <parameter name="condition" optional="false" byreference="false" type="int"/> </method> <method name="create" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact="Create a Condition"/> - <return type="long"/> + <return type="int"/> </docblock> </method> <method name="destroy" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact="Destroy a Condition"/> - <return type="boolean"/> + <return type="bool"/> </docblock> - <parameter name="condition" optional="false" byreference="false" type="object" class="long"/> + <parameter name="condition" optional="false" byreference="false" type="int"/> </method> <method name="signal" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact="Signal a Condition"/> - <return type="boolean"/> + <return type="bool"/> </docblock> - <parameter name="condition" optional="false" byreference="false" type="object" class="long"/> + <parameter name="condition" optional="false" byreference="false" type="int"/> </method> <method name="wait" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact="Wait for Condition"/> - <return type="boolean"/> + <return type="bool"/> </docblock> - <parameter name="condition" optional="false" byreference="false" type="object" class="long"/> - <parameter name="mutex" optional="false" byreference="false" type="object" class="long"/> - <parameter name="timeout" optional="true" byreference="false" type="object" class="long"/> + <parameter name="condition" optional="false" byreference="false" type="int"/> + <parameter name="mutex" optional="false" byreference="false" type="int"/> + <parameter name="timeout" optional="true" byreference="false" type="int"/> </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/Counter.xml b/dependencies/php/classes/Counter.xml index 4d69c8673b4f42877c49ca48ac37493a5d4bd70e..5de824749d249be28cdd12b0f290f78ad0c2d3bb 100644 --- a/dependencies/php/classes/Counter.xml +++ b/dependencies/php/classes/Counter.xml @@ -2,49 +2,49 @@ <class xmlns="http://xml.phpdox.net/src" full="Counter" namespace="" name="Counter"> <constructor name="__construct" abstract="false" static="false" final="false"> <docblock> - <description compact=" Creates an instance of a Counter which maintains a single numeric value. "/> + <description compact=" Creates an instance of a Counter which maintains a single numeric value "/> <return type="void"/> </docblock> <parameter name="name" optional="false" byreference="false" type="string"/> - <parameter name="initial_value" optional="true" byreference="false" type="object" class="integer"/> - <parameter name="flags" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="initial_value" optional="true" byreference="false" type="int"/> + <parameter name="flags" optional="true" byreference="false" type="int"/> </constructor> <method name="getValue" abstract="false" static="false" final="false"> <docblock> - <description compact=" Get the current value of a counter. "/> - <return type="integer"/> + <description compact=" Get the current value of a counter "/> + <return type="int"/> </docblock> </method> <method name="bumpValue" abstract="false" static="false" final="false"> <docblock> - <description compact=" Change the current value of a counter. "/> + <description compact=" Change the current value of a counter "/> <return type="void"/> </docblock> - <parameter name="offset" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="offset" optional="false" byreference="false" type="int"/> </method> <method name="resetValue" abstract="false" static="false" final="false"> <docblock> - <description compact=" Reset the current value of a counter. "/> + <description compact=" Reset the current value of a counter "/> <return type="void"/> </docblock> </method> <method name="getMeta" abstract="false" static="false" final="false"> <docblock> - <description compact=" Return a piece of metainformation about a counter. "/> + <description compact=" Return a piece of metainformation about a counter "/> <return type="mixed"/> </docblock> - <parameter name="attribute" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="attribute" optional="false" byreference="false" type="int"/> </method> <method name="getNamed" abstract="false" static="false" final="false"> <docblock> - <description compact=" Retrieve an existing named counter. "/> + <description compact=" Retrieve an existing named counter "/> <return type="Counter"/> </docblock> <parameter name="name" optional="false" byreference="false" type="string"/> </method> <method name="setCounterClass" abstract="false" static="false" final="false"> <docblock> - <description compact=" Set the class returned by Counter::getNamed. "/> + <description compact=" Set the class returned by Counter::getNamed "/> <return type="void"/> </docblock> <parameter name="name" optional="false" byreference="false" type="string"/> diff --git a/dependencies/php/classes/DOMAttr.xml b/dependencies/php/classes/DOMAttr.xml index 6118364c3077825c25f65bfe24589c6db82e724c..6fe8c72c46a29c5245a912143b7db09971ba6787 100644 --- a/dependencies/php/classes/DOMAttr.xml +++ b/dependencies/php/classes/DOMAttr.xml @@ -36,6 +36,118 @@ <var type="string"/> </docblock> </member> + <member name="nodeName" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Returns the most accurate name for the current node type"/> + <var type="string"/> + </docblock> + </member> + <member name="nodeValue" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The value of this node, depending on its type. Contrary to the W3C specification, the node value of DOMElement nodes is equal to DOMNode::textContent instead of NULL."/> + <var type="string"/> + </docblock> + </member> + <member name="nodeType" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Gets the type of the node. One of the predefined XML_xxx_NODE constants"/> + <var type="int"/> + </docblock> + </member> + <member name="parentNode" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The parent of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="childNodes" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="A DOMNodeList that contains all children of this node. If there are no children, this is an empty DOMNodeList."/> + <var type="DOMNodeList"/> + </docblock> + </member> + <member name="firstChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The first child of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="lastChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The last child of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="previousSibling" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The node immediately preceding this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="nextSibling" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The node immediately following this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="attributes" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="A DOMNamedNodeMap containing the attributes of this node (if it is a DOMElement) or NULL otherwise."/> + <var type="DOMNamedNodeMap"/> + </docblock> + </member> + <member name="ownerDocument" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The DOMDocument object associated with this node."/> + <var type="DOMDocument"/> + </docblock> + </member> + <member name="namespaceURI" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The namespace URI of this node, or NULL if it is unspecified."/> + <var type="string"/> + </docblock> + </member> + <member name="prefix" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The namespace prefix of this node, or NULL if it is unspecified."/> + <var type="string"/> + </docblock> + </member> + <member name="localName" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Returns the local part of the qualified name of this node."/> + <var type="string"/> + </docblock> + </member> + <member name="baseURI" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The absolute base URI of this node or NULL if the implementation wasn't able to obtain an absolute URI."/> + <var type="string"/> + </docblock> + </member> + <member name="textContent" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The text content of this node and its descendants."/> + <var type="string"/> + </docblock> + </member> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Creates a new DOMAttr object"/> @@ -139,7 +251,7 @@ <parameter name="feature" optional="false" byreference="false" type="string"/> <parameter name="version" optional="false" byreference="false" type="string"/> </method> - <method name="lookupNamespaceURI" abstract="false" static="false" visibility="public" final="false"> + <method name="lookupNamespaceUri" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> <return type="string"/> diff --git a/dependencies/php/classes/DOMCdataSection.xml b/dependencies/php/classes/DOMCdataSection.xml index 1ff2baeb769e34d8986d85901e080d419ab7435e..347b560fe4d71f943e80f4f1ad9ef98bf13bf72b 100644 --- a/dependencies/php/classes/DOMCdataSection.xml +++ b/dependencies/php/classes/DOMCdataSection.xml @@ -1,6 +1,139 @@ <?xml version="1.0" encoding="UTF-8" ?> <class xmlns="http://xml.phpdox.net/src" full="DOMCdataSection" namespace="" name="DOMCdataSection"> <extends name="DOMText" full="DOMText"/> + <member name="wholeText" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Holds all the text of logically-adjacent (not separated by Element, Comment or Processing Instruction) Text nodes."/> + <var type="string"/> + </docblock> + </member> + <member name="data" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The contents of the node."/> + <var type="string"/> + </docblock> + </member> + <member name="length" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The length of the contents."/> + <var type="int"/> + </docblock> + </member> + <member name="nodeName" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Returns the most accurate name for the current node type"/> + <var type="string"/> + </docblock> + </member> + <member name="nodeValue" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The value of this node, depending on its type. Contrary to the W3C specification, the node value of DOMElement nodes is equal to DOMNode::textContent instead of NULL."/> + <var type="string"/> + </docblock> + </member> + <member name="nodeType" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Gets the type of the node. One of the predefined XML_xxx_NODE constants"/> + <var type="int"/> + </docblock> + </member> + <member name="parentNode" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The parent of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="childNodes" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="A DOMNodeList that contains all children of this node. If there are no children, this is an empty DOMNodeList."/> + <var type="DOMNodeList"/> + </docblock> + </member> + <member name="firstChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The first child of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="lastChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The last child of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="previousSibling" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The node immediately preceding this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="nextSibling" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The node immediately following this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="attributes" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="A DOMNamedNodeMap containing the attributes of this node (if it is a DOMElement) or NULL otherwise."/> + <var type="DOMNamedNodeMap"/> + </docblock> + </member> + <member name="ownerDocument" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The DOMDocument object associated with this node."/> + <var type="DOMDocument"/> + </docblock> + </member> + <member name="namespaceURI" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The namespace URI of this node, or NULL if it is unspecified."/> + <var type="string"/> + </docblock> + </member> + <member name="prefix" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The namespace prefix of this node, or NULL if it is unspecified."/> + <var type="string"/> + </docblock> + </member> + <member name="localName" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Returns the local part of the qualified name of this node."/> + <var type="string"/> + </docblock> + </member> + <member name="baseURI" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The absolute base URI of this node or NULL if the implementation wasn't able to obtain an absolute URI."/> + <var type="string"/> + </docblock> + </member> + <member name="textContent" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The text content of this node and its descendants."/> + <var type="string"/> + </docblock> + </member> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Constructs a new DOMCdataSection object"/> @@ -8,6 +141,12 @@ </docblock> <parameter name="value" optional="false" byreference="false" type="string"/> </constructor> + <method name="isElementContentWhitespace" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + </method> <method name="isWhitespaceInElementContent" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> @@ -21,4 +160,168 @@ </docblock> <parameter name="offset" optional="false" byreference="false" type="int"/> </method> + <method name="appendData" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="data" optional="false" byreference="false" type="string"/> + </method> + <method name="deleteData" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="offset" optional="false" byreference="false" type="int"/> + <parameter name="count" optional="false" byreference="false" type="int"/> + </method> + <method name="insertData" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="offset" optional="false" byreference="false" type="int"/> + <parameter name="data" optional="false" byreference="false" type="string"/> + </method> + <method name="replaceData" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="offset" optional="false" byreference="false" type="int"/> + <parameter name="count" optional="false" byreference="false" type="int"/> + <parameter name="data" optional="false" byreference="false" type="string"/> + </method> + <method name="substringData" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + <parameter name="offset" optional="false" byreference="false" type="int"/> + <parameter name="count" optional="false" byreference="false" type="int"/> + </method> + <method name="appendChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="DOMNode"/> + </docblock> + <parameter name="newnode" optional="false" byreference="false" type="object" class="DOMNode"/> + </method> + <method name="C14N" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + <parameter name="exclusive" optional="true" byreference="false" type="object" class="bool"/> + <parameter name="with_comments" optional="true" byreference="false" type="object" class="bool"/> + <parameter name="xpath" optional="true" byreference="false" type="object" class="array"/> + <parameter name="ns_prefixes" optional="true" byreference="false" type="object" class="array"/> + </method> + <method name="C14NFile" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + <parameter name="uri" optional="false" byreference="false" type="string"/> + <parameter name="exclusive" optional="true" byreference="false" type="object" class="bool"/> + <parameter name="with_comments" optional="true" byreference="false" type="object" class="bool"/> + <parameter name="xpath" optional="true" byreference="false" type="object" class="array"/> + <parameter name="ns_prefixes" optional="true" byreference="false" type="object" class="array"/> + </method> + <method name="cloneNode" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="DOMNode"/> + </docblock> + <parameter name="deep" optional="true" byreference="false" type="object" class="bool"/> + </method> + <method name="getLineNo" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + </method> + <method name="getNodePath" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="hasAttributes" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + </method> + <method name="hasChildNodes" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + </method> + <method name="insertBefore" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="DOMNode"/> + </docblock> + <parameter name="newnode" optional="false" byreference="false" type="object" class="DOMNode"/> + <parameter name="refnode" optional="true" byreference="false" type="object" class="DOMNode"/> + </method> + <method name="isDefaultNamespace" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="namespaceURI" optional="false" byreference="false" type="string"/> + </method> + <method name="isSameNode" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="node" optional="false" byreference="false" type="object" class="DOMNode"/> + </method> + <method name="isSupported" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="feature" optional="false" byreference="false" type="string"/> + <parameter name="version" optional="false" byreference="false" type="string"/> + </method> + <method name="lookupNamespaceUri" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + <parameter name="prefix" optional="false" byreference="false" type="string"/> + </method> + <method name="lookupPrefix" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + <parameter name="namespaceURI" optional="false" byreference="false" type="string"/> + </method> + <method name="normalize" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> + <method name="removeChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="DOMNode"/> + </docblock> + <parameter name="oldnode" optional="false" byreference="false" type="object" class="DOMNode"/> + </method> + <method name="replaceChild" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="DOMNode"/> + </docblock> + <parameter name="newnode" optional="false" byreference="false" type="object" class="DOMNode"/> + <parameter name="oldnode" optional="false" byreference="false" type="object" class="DOMNode"/> + </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/DOMCharacterData.xml b/dependencies/php/classes/DOMCharacterData.xml index b205903eb0ee44568d9fc54890f8f1c10fe0168a..3a6a85f76650e2d3a8454accbe4644889128f574 100644 --- a/dependencies/php/classes/DOMCharacterData.xml +++ b/dependencies/php/classes/DOMCharacterData.xml @@ -15,14 +15,126 @@ <var type="int"/> </docblock> </member> - <method name="appendData" abstract="false" static="false" final="false"> + <member name="nodeName" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Returns the most accurate name for the current node type"/> + <var type="string"/> + </docblock> + </member> + <member name="nodeValue" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The value of this node, depending on its type. Contrary to the W3C specification, the node value of DOMElement nodes is equal to DOMNode::textContent instead of NULL."/> + <var type="string"/> + </docblock> + </member> + <member name="nodeType" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Gets the type of the node. One of the predefined XML_xxx_NODE constants"/> + <var type="int"/> + </docblock> + </member> + <member name="parentNode" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The parent of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="childNodes" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="A DOMNodeList that contains all children of this node. If there are no children, this is an empty DOMNodeList."/> + <var type="DOMNodeList"/> + </docblock> + </member> + <member name="firstChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The first child of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="lastChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The last child of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="previousSibling" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The node immediately preceding this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="nextSibling" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The node immediately following this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="attributes" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="A DOMNamedNodeMap containing the attributes of this node (if it is a DOMElement) or NULL otherwise."/> + <var type="DOMNamedNodeMap"/> + </docblock> + </member> + <member name="ownerDocument" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The DOMDocument object associated with this node."/> + <var type="DOMDocument"/> + </docblock> + </member> + <member name="namespaceURI" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The namespace URI of this node, or NULL if it is unspecified."/> + <var type="string"/> + </docblock> + </member> + <member name="prefix" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The namespace prefix of this node, or NULL if it is unspecified."/> + <var type="string"/> + </docblock> + </member> + <member name="localName" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Returns the local part of the qualified name of this node."/> + <var type="string"/> + </docblock> + </member> + <member name="baseURI" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The absolute base URI of this node or NULL if the implementation wasn't able to obtain an absolute URI."/> + <var type="string"/> + </docblock> + </member> + <member name="textContent" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The text content of this node and its descendants."/> + <var type="string"/> + </docblock> + </member> + <method name="appendData" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=" Append the string to the end of the character data of the node "/> <return type="void"/> </docblock> <parameter name="data" optional="false" byreference="false" type="string"/> </method> - <method name="deleteData" abstract="false" static="false" final="false"> + <method name="deleteData" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=" Remove a range of characters from the node "/> <return type="void"/> @@ -30,7 +142,7 @@ <parameter name="offset" optional="false" byreference="false" type="int"/> <parameter name="count" optional="false" byreference="false" type="int"/> </method> - <method name="insertData" abstract="false" static="false" final="false"> + <method name="insertData" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=" Insert a string at the specified 16-bit unit offset "/> <return type="void"/> @@ -38,7 +150,7 @@ <parameter name="offset" optional="false" byreference="false" type="int"/> <parameter name="data" optional="false" byreference="false" type="string"/> </method> - <method name="replaceData" abstract="false" static="false" final="false"> + <method name="replaceData" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=" Replace a substring within the DOMCharacterData node "/> <return type="void"/> @@ -47,7 +159,7 @@ <parameter name="count" optional="false" byreference="false" type="int"/> <parameter name="data" optional="false" byreference="false" type="string"/> </method> - <method name="substringData" abstract="false" static="false" final="false"> + <method name="substringData" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=" Extracts a range of data from the node "/> <return type="string"/> @@ -144,7 +256,7 @@ <parameter name="feature" optional="false" byreference="false" type="string"/> <parameter name="version" optional="false" byreference="false" type="string"/> </method> - <method name="lookupNamespaceURI" abstract="false" static="false" visibility="public" final="false"> + <method name="lookupNamespaceUri" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> <return type="string"/> diff --git a/dependencies/php/classes/DOMComment.xml b/dependencies/php/classes/DOMComment.xml index d7413894cbf65551e62e5edc2c66b532a7f258d6..9b724fa64ad60c6038e7c5aa1d62a3086c914c81 100644 --- a/dependencies/php/classes/DOMComment.xml +++ b/dependencies/php/classes/DOMComment.xml @@ -1,6 +1,132 @@ <?xml version="1.0" encoding="UTF-8" ?> <class xmlns="http://xml.phpdox.net/src" full="DOMComment" namespace="" name="DOMComment"> <extends name="DOMCharacterData" full="DOMCharacterData"/> + <member name="data" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The contents of the node."/> + <var type="string"/> + </docblock> + </member> + <member name="length" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The length of the contents."/> + <var type="int"/> + </docblock> + </member> + <member name="nodeName" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Returns the most accurate name for the current node type"/> + <var type="string"/> + </docblock> + </member> + <member name="nodeValue" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The value of this node, depending on its type. Contrary to the W3C specification, the node value of DOMElement nodes is equal to DOMNode::textContent instead of NULL."/> + <var type="string"/> + </docblock> + </member> + <member name="nodeType" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Gets the type of the node. One of the predefined XML_xxx_NODE constants"/> + <var type="int"/> + </docblock> + </member> + <member name="parentNode" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The parent of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="childNodes" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="A DOMNodeList that contains all children of this node. If there are no children, this is an empty DOMNodeList."/> + <var type="DOMNodeList"/> + </docblock> + </member> + <member name="firstChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The first child of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="lastChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The last child of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="previousSibling" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The node immediately preceding this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="nextSibling" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The node immediately following this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="attributes" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="A DOMNamedNodeMap containing the attributes of this node (if it is a DOMElement) or NULL otherwise."/> + <var type="DOMNamedNodeMap"/> + </docblock> + </member> + <member name="ownerDocument" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The DOMDocument object associated with this node."/> + <var type="DOMDocument"/> + </docblock> + </member> + <member name="namespaceURI" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The namespace URI of this node, or NULL if it is unspecified."/> + <var type="string"/> + </docblock> + </member> + <member name="prefix" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The namespace prefix of this node, or NULL if it is unspecified."/> + <var type="string"/> + </docblock> + </member> + <member name="localName" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Returns the local part of the qualified name of this node."/> + <var type="string"/> + </docblock> + </member> + <member name="baseURI" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The absolute base URI of this node or NULL if the implementation wasn't able to obtain an absolute URI."/> + <var type="string"/> + </docblock> + </member> + <member name="textContent" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The text content of this node and its descendants."/> + <var type="string"/> + </docblock> + </member> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=" Creates a new DOMComment object "/> @@ -8,14 +134,14 @@ </docblock> <parameter name="value" optional="true" byreference="false" type="string"/> </constructor> - <method name="appendData" abstract="false" static="false" final="false"> + <method name="appendData" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> <return type="void"/> </docblock> <parameter name="data" optional="false" byreference="false" type="string"/> </method> - <method name="deleteData" abstract="false" static="false" final="false"> + <method name="deleteData" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> <return type="void"/> @@ -23,7 +149,7 @@ <parameter name="offset" optional="false" byreference="false" type="int"/> <parameter name="count" optional="false" byreference="false" type="int"/> </method> - <method name="insertData" abstract="false" static="false" final="false"> + <method name="insertData" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> <return type="void"/> @@ -31,7 +157,7 @@ <parameter name="offset" optional="false" byreference="false" type="int"/> <parameter name="data" optional="false" byreference="false" type="string"/> </method> - <method name="replaceData" abstract="false" static="false" final="false"> + <method name="replaceData" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> <return type="void"/> @@ -40,7 +166,7 @@ <parameter name="count" optional="false" byreference="false" type="int"/> <parameter name="data" optional="false" byreference="false" type="string"/> </method> - <method name="substringData" abstract="false" static="false" final="false"> + <method name="substringData" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> <return type="string"/> @@ -137,7 +263,7 @@ <parameter name="feature" optional="false" byreference="false" type="string"/> <parameter name="version" optional="false" byreference="false" type="string"/> </method> - <method name="lookupNamespaceURI" abstract="false" static="false" visibility="public" final="false"> + <method name="lookupNamespaceUri" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> <return type="string"/> diff --git a/dependencies/php/classes/DOMDocument.xml b/dependencies/php/classes/DOMDocument.xml index 37e8208c94e6e8c98a67d58e494478a02bd957a4..b50002ae33d4221e2dda67d856283778b218ebf5 100644 --- a/dependencies/php/classes/DOMDocument.xml +++ b/dependencies/php/classes/DOMDocument.xml @@ -134,6 +134,118 @@ <var type="string"/> </docblock> </member> + <member name="nodeName" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Returns the most accurate name for the current node type"/> + <var type="string"/> + </docblock> + </member> + <member name="nodeValue" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The value of this node, depending on its type. Contrary to the W3C specification, the node value of DOMElement nodes is equal to DOMNode::textContent instead of NULL."/> + <var type="string"/> + </docblock> + </member> + <member name="nodeType" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Gets the type of the node. One of the predefined XML_xxx_NODE constants"/> + <var type="int"/> + </docblock> + </member> + <member name="parentNode" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The parent of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="childNodes" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="A DOMNodeList that contains all children of this node. If there are no children, this is an empty DOMNodeList."/> + <var type="DOMNodeList"/> + </docblock> + </member> + <member name="firstChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The first child of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="lastChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The last child of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="previousSibling" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The node immediately preceding this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="nextSibling" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The node immediately following this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="attributes" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="A DOMNamedNodeMap containing the attributes of this node (if it is a DOMElement) or NULL otherwise."/> + <var type="DOMNamedNodeMap"/> + </docblock> + </member> + <member name="ownerDocument" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The DOMDocument object associated with this node."/> + <var type="DOMDocument"/> + </docblock> + </member> + <member name="namespaceURI" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The namespace URI of this node, or NULL if it is unspecified."/> + <var type="string"/> + </docblock> + </member> + <member name="prefix" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The namespace prefix of this node, or NULL if it is unspecified."/> + <var type="string"/> + </docblock> + </member> + <member name="localName" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Returns the local part of the qualified name of this node."/> + <var type="string"/> + </docblock> + </member> + <member name="baseURI" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The absolute base URI of this node or NULL if the implementation wasn't able to obtain an absolute URI."/> + <var type="string"/> + </docblock> + </member> + <member name="textContent" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The text content of this node and its descendants."/> + <var type="string"/> + </docblock> + </member> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=" Creates a new DOMDocument object "/> @@ -454,7 +566,7 @@ <parameter name="feature" optional="false" byreference="false" type="string"/> <parameter name="version" optional="false" byreference="false" type="string"/> </method> - <method name="lookupNamespaceURI" abstract="false" static="false" visibility="public" final="false"> + <method name="lookupNamespaceUri" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> <return type="string"/> diff --git a/dependencies/php/classes/DOMDocumentFragment.xml b/dependencies/php/classes/DOMDocumentFragment.xml index 9b6e04cbc6c5d75b5bbbd042c9a49fb811a0b63a..83d56df7fc5aff0dd6538cfb6aaf5e7a23236432 100644 --- a/dependencies/php/classes/DOMDocumentFragment.xml +++ b/dependencies/php/classes/DOMDocumentFragment.xml @@ -1,6 +1,118 @@ <?xml version="1.0" encoding="UTF-8" ?> <class xmlns="http://xml.phpdox.net/src" full="DOMDocumentFragment" namespace="" name="DOMDocumentFragment"> <extends name="DOMNode" full="DOMNode"/> + <member name="nodeName" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Returns the most accurate name for the current node type"/> + <var type="string"/> + </docblock> + </member> + <member name="nodeValue" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The value of this node, depending on its type. Contrary to the W3C specification, the node value of DOMElement nodes is equal to DOMNode::textContent instead of NULL."/> + <var type="string"/> + </docblock> + </member> + <member name="nodeType" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Gets the type of the node. One of the predefined XML_xxx_NODE constants"/> + <var type="int"/> + </docblock> + </member> + <member name="parentNode" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The parent of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="childNodes" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="A DOMNodeList that contains all children of this node. If there are no children, this is an empty DOMNodeList."/> + <var type="DOMNodeList"/> + </docblock> + </member> + <member name="firstChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The first child of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="lastChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The last child of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="previousSibling" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The node immediately preceding this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="nextSibling" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The node immediately following this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="attributes" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="A DOMNamedNodeMap containing the attributes of this node (if it is a DOMElement) or NULL otherwise."/> + <var type="DOMNamedNodeMap"/> + </docblock> + </member> + <member name="ownerDocument" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The DOMDocument object associated with this node."/> + <var type="DOMDocument"/> + </docblock> + </member> + <member name="namespaceURI" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The namespace URI of this node, or NULL if it is unspecified."/> + <var type="string"/> + </docblock> + </member> + <member name="prefix" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The namespace prefix of this node, or NULL if it is unspecified."/> + <var type="string"/> + </docblock> + </member> + <member name="localName" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Returns the local part of the qualified name of this node."/> + <var type="string"/> + </docblock> + </member> + <member name="baseURI" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The absolute base URI of this node or NULL if the implementation wasn't able to obtain an absolute URI."/> + <var type="string"/> + </docblock> + </member> + <member name="textContent" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The text content of this node and its descendants."/> + <var type="string"/> + </docblock> + </member> <method name="appendXML" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Append raw XML data">Appends raw XML data to a DOMDocumentFragment.</description> @@ -97,7 +209,7 @@ <parameter name="feature" optional="false" byreference="false" type="string"/> <parameter name="version" optional="false" byreference="false" type="string"/> </method> - <method name="lookupNamespaceURI" abstract="false" static="false" visibility="public" final="false"> + <method name="lookupNamespaceUri" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> <return type="string"/> diff --git a/dependencies/php/classes/DOMDocumentType.xml b/dependencies/php/classes/DOMDocumentType.xml index ef4056db214ff041fd91b8936f5e4a0dca97ba9e..9db1ca90d83fdc4a62e825fd37c4b4c0982e6f0f 100644 --- a/dependencies/php/classes/DOMDocumentType.xml +++ b/dependencies/php/classes/DOMDocumentType.xml @@ -43,6 +43,118 @@ <var type="string"/> </docblock> </member> + <member name="nodeName" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Returns the most accurate name for the current node type"/> + <var type="string"/> + </docblock> + </member> + <member name="nodeValue" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The value of this node, depending on its type. Contrary to the W3C specification, the node value of DOMElement nodes is equal to DOMNode::textContent instead of NULL."/> + <var type="string"/> + </docblock> + </member> + <member name="nodeType" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Gets the type of the node. One of the predefined XML_xxx_NODE constants"/> + <var type="int"/> + </docblock> + </member> + <member name="parentNode" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The parent of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="childNodes" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="A DOMNodeList that contains all children of this node. If there are no children, this is an empty DOMNodeList."/> + <var type="DOMNodeList"/> + </docblock> + </member> + <member name="firstChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The first child of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="lastChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The last child of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="previousSibling" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The node immediately preceding this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="nextSibling" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The node immediately following this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="attributes" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="A DOMNamedNodeMap containing the attributes of this node (if it is a DOMElement) or NULL otherwise."/> + <var type="DOMNamedNodeMap"/> + </docblock> + </member> + <member name="ownerDocument" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The DOMDocument object associated with this node."/> + <var type="DOMDocument"/> + </docblock> + </member> + <member name="namespaceURI" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The namespace URI of this node, or NULL if it is unspecified."/> + <var type="string"/> + </docblock> + </member> + <member name="prefix" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The namespace prefix of this node, or NULL if it is unspecified."/> + <var type="string"/> + </docblock> + </member> + <member name="localName" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Returns the local part of the qualified name of this node."/> + <var type="string"/> + </docblock> + </member> + <member name="baseURI" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The absolute base URI of this node or NULL if the implementation wasn't able to obtain an absolute URI."/> + <var type="string"/> + </docblock> + </member> + <member name="textContent" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The text content of this node and its descendants."/> + <var type="string"/> + </docblock> + </member> <method name="appendChild" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> @@ -132,7 +244,7 @@ <parameter name="feature" optional="false" byreference="false" type="string"/> <parameter name="version" optional="false" byreference="false" type="string"/> </method> - <method name="lookupNamespaceURI" abstract="false" static="false" visibility="public" final="false"> + <method name="lookupNamespaceUri" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> <return type="string"/> diff --git a/dependencies/php/classes/DOMElement.xml b/dependencies/php/classes/DOMElement.xml index 88c0b2263e4d5ae5508e589aec9e1fcd0ec7cc21..5196edc93bb55a50e3e51f961a5b776676f205a7 100644 --- a/dependencies/php/classes/DOMElement.xml +++ b/dependencies/php/classes/DOMElement.xml @@ -15,6 +15,118 @@ <var type="string"/> </docblock> </member> + <member name="nodeName" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Returns the most accurate name for the current node type"/> + <var type="string"/> + </docblock> + </member> + <member name="nodeValue" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The value of this node, depending on its type. Contrary to the W3C specification, the node value of DOMElement nodes is equal to DOMNode::textContent instead of NULL."/> + <var type="string"/> + </docblock> + </member> + <member name="nodeType" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Gets the type of the node. One of the predefined XML_xxx_NODE constants"/> + <var type="int"/> + </docblock> + </member> + <member name="parentNode" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The parent of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="childNodes" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="A DOMNodeList that contains all children of this node. If there are no children, this is an empty DOMNodeList."/> + <var type="DOMNodeList"/> + </docblock> + </member> + <member name="firstChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The first child of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="lastChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The last child of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="previousSibling" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The node immediately preceding this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="nextSibling" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The node immediately following this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="attributes" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="A DOMNamedNodeMap containing the attributes of this node (if it is a DOMElement) or NULL otherwise."/> + <var type="DOMNamedNodeMap"/> + </docblock> + </member> + <member name="ownerDocument" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The DOMDocument object associated with this node."/> + <var type="DOMDocument"/> + </docblock> + </member> + <member name="namespaceURI" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The namespace URI of this node, or NULL if it is unspecified."/> + <var type="string"/> + </docblock> + </member> + <member name="prefix" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The namespace prefix of this node, or NULL if it is unspecified."/> + <var type="string"/> + </docblock> + </member> + <member name="localName" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Returns the local part of the qualified name of this node."/> + <var type="string"/> + </docblock> + </member> + <member name="baseURI" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The absolute base URI of this node or NULL if the implementation wasn't able to obtain an absolute URI."/> + <var type="string"/> + </docblock> + </member> + <member name="textContent" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The text content of this node and its descendants."/> + <var type="string"/> + </docblock> + </member> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=" Creates a new DOMElement object "/> @@ -251,7 +363,7 @@ <parameter name="feature" optional="false" byreference="false" type="string"/> <parameter name="version" optional="false" byreference="false" type="string"/> </method> - <method name="lookupNamespaceURI" abstract="false" static="false" visibility="public" final="false"> + <method name="lookupNamespaceUri" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> <return type="string"/> diff --git a/dependencies/php/classes/DOMEntity.xml b/dependencies/php/classes/DOMEntity.xml index d38d6b290c1b152bd18bbe5ce36dc2fd68d86b9c..844d28065a0d39ea789e5f4998c87a93f3f6c0de 100644 --- a/dependencies/php/classes/DOMEntity.xml +++ b/dependencies/php/classes/DOMEntity.xml @@ -43,6 +43,118 @@ <var type="string"/> </docblock> </member> + <member name="nodeName" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Returns the most accurate name for the current node type"/> + <var type="string"/> + </docblock> + </member> + <member name="nodeValue" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The value of this node, depending on its type. Contrary to the W3C specification, the node value of DOMElement nodes is equal to DOMNode::textContent instead of NULL."/> + <var type="string"/> + </docblock> + </member> + <member name="nodeType" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Gets the type of the node. One of the predefined XML_xxx_NODE constants"/> + <var type="int"/> + </docblock> + </member> + <member name="parentNode" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The parent of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="childNodes" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="A DOMNodeList that contains all children of this node. If there are no children, this is an empty DOMNodeList."/> + <var type="DOMNodeList"/> + </docblock> + </member> + <member name="firstChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The first child of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="lastChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The last child of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="previousSibling" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The node immediately preceding this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="nextSibling" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The node immediately following this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="attributes" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="A DOMNamedNodeMap containing the attributes of this node (if it is a DOMElement) or NULL otherwise."/> + <var type="DOMNamedNodeMap"/> + </docblock> + </member> + <member name="ownerDocument" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The DOMDocument object associated with this node."/> + <var type="DOMDocument"/> + </docblock> + </member> + <member name="namespaceURI" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The namespace URI of this node, or NULL if it is unspecified."/> + <var type="string"/> + </docblock> + </member> + <member name="prefix" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The namespace prefix of this node, or NULL if it is unspecified."/> + <var type="string"/> + </docblock> + </member> + <member name="localName" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Returns the local part of the qualified name of this node."/> + <var type="string"/> + </docblock> + </member> + <member name="baseURI" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The absolute base URI of this node or NULL if the implementation wasn't able to obtain an absolute URI."/> + <var type="string"/> + </docblock> + </member> + <member name="textContent" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The text content of this node and its descendants."/> + <var type="string"/> + </docblock> + </member> <method name="appendChild" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> @@ -132,7 +244,7 @@ <parameter name="feature" optional="false" byreference="false" type="string"/> <parameter name="version" optional="false" byreference="false" type="string"/> </method> - <method name="lookupNamespaceURI" abstract="false" static="false" visibility="public" final="false"> + <method name="lookupNamespaceUri" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> <return type="string"/> diff --git a/dependencies/php/classes/DOMEntityReference.xml b/dependencies/php/classes/DOMEntityReference.xml index 1d4eec9e9fef1f4f8b581267dd0a56ad1333cbfa..ad765498af3a1f3f87a16a31089f4e148ffe4763 100644 --- a/dependencies/php/classes/DOMEntityReference.xml +++ b/dependencies/php/classes/DOMEntityReference.xml @@ -1,6 +1,118 @@ <?xml version="1.0" encoding="UTF-8" ?> <class xmlns="http://xml.phpdox.net/src" full="DOMEntityReference" namespace="" name="DOMEntityReference"> <extends name="DOMNode" full="DOMNode"/> + <member name="nodeName" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Returns the most accurate name for the current node type"/> + <var type="string"/> + </docblock> + </member> + <member name="nodeValue" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The value of this node, depending on its type. Contrary to the W3C specification, the node value of DOMElement nodes is equal to DOMNode::textContent instead of NULL."/> + <var type="string"/> + </docblock> + </member> + <member name="nodeType" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Gets the type of the node. One of the predefined XML_xxx_NODE constants"/> + <var type="int"/> + </docblock> + </member> + <member name="parentNode" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The parent of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="childNodes" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="A DOMNodeList that contains all children of this node. If there are no children, this is an empty DOMNodeList."/> + <var type="DOMNodeList"/> + </docblock> + </member> + <member name="firstChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The first child of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="lastChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The last child of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="previousSibling" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The node immediately preceding this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="nextSibling" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The node immediately following this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="attributes" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="A DOMNamedNodeMap containing the attributes of this node (if it is a DOMElement) or NULL otherwise."/> + <var type="DOMNamedNodeMap"/> + </docblock> + </member> + <member name="ownerDocument" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The DOMDocument object associated with this node."/> + <var type="DOMDocument"/> + </docblock> + </member> + <member name="namespaceURI" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The namespace URI of this node, or NULL if it is unspecified."/> + <var type="string"/> + </docblock> + </member> + <member name="prefix" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The namespace prefix of this node, or NULL if it is unspecified."/> + <var type="string"/> + </docblock> + </member> + <member name="localName" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Returns the local part of the qualified name of this node."/> + <var type="string"/> + </docblock> + </member> + <member name="baseURI" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The absolute base URI of this node or NULL if the implementation wasn't able to obtain an absolute URI."/> + <var type="string"/> + </docblock> + </member> + <member name="textContent" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The text content of this node and its descendants."/> + <var type="string"/> + </docblock> + </member> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=" Creates a new DOMEntityReference object "/> @@ -97,7 +209,7 @@ <parameter name="feature" optional="false" byreference="false" type="string"/> <parameter name="version" optional="false" byreference="false" type="string"/> </method> - <method name="lookupNamespaceURI" abstract="false" static="false" visibility="public" final="false"> + <method name="lookupNamespaceUri" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> <return type="string"/> diff --git a/dependencies/php/classes/DOMException.xml b/dependencies/php/classes/DOMException.xml index 24badae1d335836634c756e8b2abba48e8d10f41..09e299bd650449011dd40828c229821e132a3ae3 100644 --- a/dependencies/php/classes/DOMException.xml +++ b/dependencies/php/classes/DOMException.xml @@ -8,6 +8,34 @@ <var type="int"/> </docblock> </member> + <member name="message" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The exception message"/> + <var type="string"/> + </docblock> + </member> + <member name="code" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The exception code"/> + <var type="int"/> + </docblock> + </member> + <member name="file" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The filename where the exception was created"/> + <var type="string"/> + </docblock> + </member> + <member name="line" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The line where the exception was created"/> + <var type="int"/> + </docblock> + </member> <method name="getMessage" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact=""/> diff --git a/dependencies/php/classes/DOMNamedNodeMap.xml b/dependencies/php/classes/DOMNamedNodeMap.xml index 145604462d50c5a07b7a62efecf719a0c4b4253d..b10d758e01bf4a7660a826a356d2b213bbceebba 100644 --- a/dependencies/php/classes/DOMNamedNodeMap.xml +++ b/dependencies/php/classes/DOMNamedNodeMap.xml @@ -8,6 +8,12 @@ <var type="int"/> </docblock> </member> + <method name="count" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get number of nodes in the map"/> + <return type="int"/> + </docblock> + </method> <method name="getNamedItem" abstract="false" static="false" final="false"> <docblock> <description compact=" Retrieves a node specified by name "/> diff --git a/dependencies/php/classes/DOMNode.xml b/dependencies/php/classes/DOMNode.xml index ae7ad603a95aca11ee4748e8c1462c75af40d0b5..ffaec025ab7b8b41be928b89fb76f68476b73cb8 100644 --- a/dependencies/php/classes/DOMNode.xml +++ b/dependencies/php/classes/DOMNode.xml @@ -201,7 +201,7 @@ <parameter name="feature" optional="false" byreference="false" type="string"/> <parameter name="version" optional="false" byreference="false" type="string"/> </method> - <method name="lookupNamespaceURI" abstract="false" static="false" visibility="public" final="false"> + <method name="lookupNamespaceUri" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=" Gets the namespace URI of the node based on the prefix "/> <return type="string"/> diff --git a/dependencies/php/classes/DOMNodeList.xml b/dependencies/php/classes/DOMNodeList.xml index b2336ba4718b2c2878118f413b1316bbc4a8df84..40e830b76491796d88b05168d806ac352ca4a9cb 100644 --- a/dependencies/php/classes/DOMNodeList.xml +++ b/dependencies/php/classes/DOMNodeList.xml @@ -8,10 +8,16 @@ <var type="int"/> </docblock> </member> + <method name="count" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get number of nodes in the list"/> + <return type="int"/> + </docblock> + </method> <method name="item" abstract="false" static="false" final="false"> <docblock> <description compact=" Retrieves a node specified by index ">Retrieves a node specified by index within the DOMNodeList object.</description> - <return type="DOMElement"/> + <return type="DOMNode"/> </docblock> <parameter name="index" optional="false" byreference="false" type="int"/> </method> diff --git a/dependencies/php/classes/DOMNotation.xml b/dependencies/php/classes/DOMNotation.xml index 000e97cc9a64e785c48d8523df8a09d0e82a0be3..d63ba3cf8d8387ecd6ecf797e34ffbb1dc19130a 100644 --- a/dependencies/php/classes/DOMNotation.xml +++ b/dependencies/php/classes/DOMNotation.xml @@ -15,6 +15,118 @@ <var type="string"/> </docblock> </member> + <member name="nodeName" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Returns the most accurate name for the current node type"/> + <var type="string"/> + </docblock> + </member> + <member name="nodeValue" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The value of this node, depending on its type. Contrary to the W3C specification, the node value of DOMElement nodes is equal to DOMNode::textContent instead of NULL."/> + <var type="string"/> + </docblock> + </member> + <member name="nodeType" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Gets the type of the node. One of the predefined XML_xxx_NODE constants"/> + <var type="int"/> + </docblock> + </member> + <member name="parentNode" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The parent of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="childNodes" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="A DOMNodeList that contains all children of this node. If there are no children, this is an empty DOMNodeList."/> + <var type="DOMNodeList"/> + </docblock> + </member> + <member name="firstChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The first child of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="lastChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The last child of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="previousSibling" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The node immediately preceding this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="nextSibling" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The node immediately following this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="attributes" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="A DOMNamedNodeMap containing the attributes of this node (if it is a DOMElement) or NULL otherwise."/> + <var type="DOMNamedNodeMap"/> + </docblock> + </member> + <member name="ownerDocument" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The DOMDocument object associated with this node."/> + <var type="DOMDocument"/> + </docblock> + </member> + <member name="namespaceURI" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The namespace URI of this node, or NULL if it is unspecified."/> + <var type="string"/> + </docblock> + </member> + <member name="prefix" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The namespace prefix of this node, or NULL if it is unspecified."/> + <var type="string"/> + </docblock> + </member> + <member name="localName" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Returns the local part of the qualified name of this node."/> + <var type="string"/> + </docblock> + </member> + <member name="baseURI" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The absolute base URI of this node or NULL if the implementation wasn't able to obtain an absolute URI."/> + <var type="string"/> + </docblock> + </member> + <member name="textContent" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The text content of this node and its descendants."/> + <var type="string"/> + </docblock> + </member> <method name="appendChild" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> @@ -104,7 +216,7 @@ <parameter name="feature" optional="false" byreference="false" type="string"/> <parameter name="version" optional="false" byreference="false" type="string"/> </method> - <method name="lookupNamespaceURI" abstract="false" static="false" visibility="public" final="false"> + <method name="lookupNamespaceUri" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> <return type="string"/> diff --git a/dependencies/php/classes/DOMProcessingInstruction.xml b/dependencies/php/classes/DOMProcessingInstruction.xml index 1db03ec818d8253ceaa0a91a7b947d329537b20e..d7e1c3851f8a5a21f4adf79cb432829047f44383 100644 --- a/dependencies/php/classes/DOMProcessingInstruction.xml +++ b/dependencies/php/classes/DOMProcessingInstruction.xml @@ -15,6 +15,118 @@ <var type="string"/> </docblock> </member> + <member name="nodeName" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Returns the most accurate name for the current node type"/> + <var type="string"/> + </docblock> + </member> + <member name="nodeValue" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The value of this node, depending on its type. Contrary to the W3C specification, the node value of DOMElement nodes is equal to DOMNode::textContent instead of NULL."/> + <var type="string"/> + </docblock> + </member> + <member name="nodeType" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Gets the type of the node. One of the predefined XML_xxx_NODE constants"/> + <var type="int"/> + </docblock> + </member> + <member name="parentNode" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The parent of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="childNodes" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="A DOMNodeList that contains all children of this node. If there are no children, this is an empty DOMNodeList."/> + <var type="DOMNodeList"/> + </docblock> + </member> + <member name="firstChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The first child of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="lastChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The last child of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="previousSibling" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The node immediately preceding this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="nextSibling" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The node immediately following this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="attributes" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="A DOMNamedNodeMap containing the attributes of this node (if it is a DOMElement) or NULL otherwise."/> + <var type="DOMNamedNodeMap"/> + </docblock> + </member> + <member name="ownerDocument" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The DOMDocument object associated with this node."/> + <var type="DOMDocument"/> + </docblock> + </member> + <member name="namespaceURI" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The namespace URI of this node, or NULL if it is unspecified."/> + <var type="string"/> + </docblock> + </member> + <member name="prefix" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The namespace prefix of this node, or NULL if it is unspecified."/> + <var type="string"/> + </docblock> + </member> + <member name="localName" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Returns the local part of the qualified name of this node."/> + <var type="string"/> + </docblock> + </member> + <member name="baseURI" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The absolute base URI of this node or NULL if the implementation wasn't able to obtain an absolute URI."/> + <var type="string"/> + </docblock> + </member> + <member name="textContent" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The text content of this node and its descendants."/> + <var type="string"/> + </docblock> + </member> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=" Creates a new DOMProcessingInstruction object "/> @@ -112,7 +224,7 @@ <parameter name="feature" optional="false" byreference="false" type="string"/> <parameter name="version" optional="false" byreference="false" type="string"/> </method> - <method name="lookupNamespaceURI" abstract="false" static="false" visibility="public" final="false"> + <method name="lookupNamespaceUri" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> <return type="string"/> diff --git a/dependencies/php/classes/DOMText.xml b/dependencies/php/classes/DOMText.xml index da5ff23870a9c375796662d2258cb1afd6d4ae60..dbb36269f48cbc0fde84a6d5c90a46c2cc2d7b69 100644 --- a/dependencies/php/classes/DOMText.xml +++ b/dependencies/php/classes/DOMText.xml @@ -8,6 +8,132 @@ <var type="string"/> </docblock> </member> + <member name="data" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The contents of the node."/> + <var type="string"/> + </docblock> + </member> + <member name="length" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The length of the contents."/> + <var type="int"/> + </docblock> + </member> + <member name="nodeName" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Returns the most accurate name for the current node type"/> + <var type="string"/> + </docblock> + </member> + <member name="nodeValue" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The value of this node, depending on its type. Contrary to the W3C specification, the node value of DOMElement nodes is equal to DOMNode::textContent instead of NULL."/> + <var type="string"/> + </docblock> + </member> + <member name="nodeType" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Gets the type of the node. One of the predefined XML_xxx_NODE constants"/> + <var type="int"/> + </docblock> + </member> + <member name="parentNode" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The parent of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="childNodes" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="A DOMNodeList that contains all children of this node. If there are no children, this is an empty DOMNodeList."/> + <var type="DOMNodeList"/> + </docblock> + </member> + <member name="firstChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The first child of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="lastChild" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The last child of this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="previousSibling" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The node immediately preceding this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="nextSibling" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The node immediately following this node. If there is no such node, this returns NULL."/> + <var type="DOMNode"/> + </docblock> + </member> + <member name="attributes" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="A DOMNamedNodeMap containing the attributes of this node (if it is a DOMElement) or NULL otherwise."/> + <var type="DOMNamedNodeMap"/> + </docblock> + </member> + <member name="ownerDocument" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The DOMDocument object associated with this node."/> + <var type="DOMDocument"/> + </docblock> + </member> + <member name="namespaceURI" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The namespace URI of this node, or NULL if it is unspecified."/> + <var type="string"/> + </docblock> + </member> + <member name="prefix" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The namespace prefix of this node, or NULL if it is unspecified."/> + <var type="string"/> + </docblock> + </member> + <member name="localName" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Returns the local part of the qualified name of this node."/> + <var type="string"/> + </docblock> + </member> + <member name="baseURI" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The absolute base URI of this node or NULL if the implementation wasn't able to obtain an absolute URI."/> + <var type="string"/> + </docblock> + </member> + <member name="textContent" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The text content of this node and its descendants."/> + <var type="string"/> + </docblock> + </member> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=" Creates a new DOMText object "/> @@ -15,6 +141,12 @@ </docblock> <parameter name="value" optional="true" byreference="false" type="string"/> </constructor> + <method name="isElementContentWhitespace" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Returns whether this text node contains whitespace in element content"/> + <return type="bool"/> + </docblock> + </method> <method name="isWhitespaceInElementContent" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=" Indicates whether this text node contains whitespace "/> @@ -28,6 +160,46 @@ </docblock> <parameter name="offset" optional="false" byreference="false" type="int"/> </method> + <method name="appendData" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="data" optional="false" byreference="false" type="string"/> + </method> + <method name="deleteData" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="offset" optional="false" byreference="false" type="int"/> + <parameter name="count" optional="false" byreference="false" type="int"/> + </method> + <method name="insertData" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="offset" optional="false" byreference="false" type="int"/> + <parameter name="data" optional="false" byreference="false" type="string"/> + </method> + <method name="replaceData" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="offset" optional="false" byreference="false" type="int"/> + <parameter name="count" optional="false" byreference="false" type="int"/> + <parameter name="data" optional="false" byreference="false" type="string"/> + </method> + <method name="substringData" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + <parameter name="offset" optional="false" byreference="false" type="int"/> + <parameter name="count" optional="false" byreference="false" type="int"/> + </method> <method name="appendChild" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> @@ -117,7 +289,7 @@ <parameter name="feature" optional="false" byreference="false" type="string"/> <parameter name="version" optional="false" byreference="false" type="string"/> </method> - <method name="lookupNamespaceURI" abstract="false" static="false" visibility="public" final="false"> + <method name="lookupNamespaceUri" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> <return type="string"/> diff --git a/dependencies/php/classes/DatePeriod.xml b/dependencies/php/classes/DatePeriod.xml index 9061febaa86ef21d93b7e3ab3ac2acd51798db17..48a5a2036788b0ed54ad4ec0b569dfd3c1856f29 100644 --- a/dependencies/php/classes/DatePeriod.xml +++ b/dependencies/php/classes/DatePeriod.xml @@ -6,6 +6,48 @@ <var type="integer"/> </docblock> </constant> + <member name="recurrences" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The number of recurrences."/> + <var type="integer"/> + </docblock> + </member> + <member name="include_start_date" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Whether to include the start date in the set of recurring dates or not."/> + <var type="boolean"/> + </docblock> + </member> + <member name="start" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The start date of the period."/> + <var type="DateTimeInterface"/> + </docblock> + </member> + <member name="current" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="During iteration this will contain the current date within the period."/> + <var type="DateTimeInterface"/> + </docblock> + </member> + <member name="end" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="The end date of the period."/> + <var type="DateTimeInterface"/> + </docblock> + </member> + <member name="interval" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="An ISO 8601 repeating interval specification."/> + <var type="DateInterval"/> + </docblock> + </member> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Creates a new DatePeriod object"/> diff --git a/dependencies/php/classes/DateTime.xml b/dependencies/php/classes/DateTime.xml index 0a2f34eda664769c749722052685bb72d2325d1a..5f5c0298d28956e76cff41db3fe593bf9df891da 100644 --- a/dependencies/php/classes/DateTime.xml +++ b/dependencies/php/classes/DateTime.xml @@ -46,6 +46,11 @@ <var type="string"/> </docblock> </constant> + <constant name="RFC3339_EXTENDED" value=""Y-m-d\TH:i:s.vP""> + <docblock> + <var type="string"/> + </docblock> + </constant> <constant name="RSS" value=""D, d M Y H:i:s O""> <docblock> <var type="string"/> @@ -126,6 +131,7 @@ <parameter name="hour" optional="false" byreference="false" type="int"/> <parameter name="minute" optional="false" byreference="false" type="int"/> <parameter name="second" optional="true" byreference="false" type="int"/> + <parameter name="microseconds" optional="true" byreference="false" type="int"/> </method> <method name="setTimestamp" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/DateTimeImmutable.xml b/dependencies/php/classes/DateTimeImmutable.xml index ab0218e43877e11832cee4be28eea7a92e52211c..040225ae495517347bc7def54fd3dbc0ff56471f 100644 --- a/dependencies/php/classes/DateTimeImmutable.xml +++ b/dependencies/php/classes/DateTimeImmutable.xml @@ -1,6 +1,66 @@ <?xml version="1.0" encoding="UTF-8" ?> <class xmlns="http://xml.phpdox.net/src" full="DateTimeImmutable" namespace="" name="DateTimeImmutable"> <implements name="DateTimeInterface" full="DateTimeInterface"/> + <constant name="ATOM" value=""Y-m-d\TH:i:sP""> + <docblock> + <var type="string"/> + </docblock> + </constant> + <constant name="COOKIE" value=""l, d-M-Y H:i:s T""> + <docblock> + <var type="string"/> + </docblock> + </constant> + <constant name="ISO8601" value=""Y-m-d\TH:i:sO""> + <docblock> + <var type="string"/> + </docblock> + </constant> + <constant name="RFC822" value=""D, d M y H:i:s O""> + <docblock> + <var type="string"/> + </docblock> + </constant> + <constant name="RFC850" value=""l, d-M-y H:i:s T""> + <docblock> + <var type="string"/> + </docblock> + </constant> + <constant name="RFC1036" value=""D, d M y H:i:s O""> + <docblock> + <var type="string"/> + </docblock> + </constant> + <constant name="RFC1123" value=""D, d M Y H:i:s O""> + <docblock> + <var type="string"/> + </docblock> + </constant> + <constant name="RFC2822" value=""D, d M Y H:i:s O""> + <docblock> + <var type="string"/> + </docblock> + </constant> + <constant name="RFC3339" value=""Y-m-d\TH:i:sP""> + <docblock> + <var type="string"/> + </docblock> + </constant> + <constant name="RFC3339_EXTENDED" value=""Y-m-d\TH:i:s.vP""> + <docblock> + <var type="string"/> + </docblock> + </constant> + <constant name="RSS" value=""D, d M Y H:i:s O""> + <docblock> + <var type="string"/> + </docblock> + </constant> + <constant name="W3C" value=""Y-m-d\TH:i:sP""> + <docblock> + <var type="string"/> + </docblock> + </constant> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Returns new DateTimeImmutable object">Object oriented style</description> @@ -78,10 +138,11 @@ <parameter name="hour" optional="false" byreference="false" type="int"/> <parameter name="minute" optional="false" byreference="false" type="int"/> <parameter name="second" optional="true" byreference="false" type="int"/> + <parameter name="microseconds" optional="true" byreference="false" type="int"/> </method> <method name="setTimestamp" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Sets the date and time based on an Unix timestamp"/> + <description compact="Sets the date and time based on a Unix timestamp"/> <return type="DateTimeImmutable"/> </docblock> <parameter name="unixtimestamp" optional="false" byreference="false" type="int"/> diff --git a/dependencies/php/classes/DirectoryIterator.xml b/dependencies/php/classes/DirectoryIterator.xml index 01a906a22bc4253e4e865ebc668b6ff16d708273..b38b532a51335f85da3bb090a5879463268148ef 100644 --- a/dependencies/php/classes/DirectoryIterator.xml +++ b/dependencies/php/classes/DirectoryIterator.xml @@ -10,7 +10,7 @@ </constructor> <method name="current" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Return the current DirectoryIterator item."/> + <description compact="Return the current DirectoryIterator item"/> <return type="DirectoryIterator"/> </docblock> </method> @@ -22,7 +22,7 @@ </method> <method name="getBasename" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Get base name of current DirectoryIterator item."/> + <description compact="Get base name of current DirectoryIterator item"/> <return type="string"/> </docblock> <parameter name="suffix" optional="true" byreference="false" type="string"/> @@ -41,7 +41,7 @@ </method> <method name="getFilename" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Return file name of current DirectoryIterator item."/> + <description compact="Return file name of current DirectoryIterator item"/> <return type="string"/> </docblock> </method> diff --git a/dependencies/php/classes/DivisionByZeroError.xml b/dependencies/php/classes/DivisionByZeroError.xml index e647b628f6f900feaa220a8c1bb7375257b03661..797c999dc2fb140aa3957e65152c26529fa296d4 100644 --- a/dependencies/php/classes/DivisionByZeroError.xml +++ b/dependencies/php/classes/DivisionByZeroError.xml @@ -1,6 +1,34 @@ <?xml version="1.0" encoding="UTF-8" ?> <class xmlns="http://xml.phpdox.net/src" full="DivisionByZeroError" namespace="" name="DivisionByZeroError"> <extends name="ArithmeticError" full="ArithmeticError"/> + <member name="message" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The error message"/> + <var type="string"/> + </docblock> + </member> + <member name="code" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The error code"/> + <var type="int"/> + </docblock> + </member> + <member name="file" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The filename where the error happened"/> + <var type="string"/> + </docblock> + </member> + <member name="line" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The line where the error happened"/> + <var type="int"/> + </docblock> + </member> <method name="getMessage" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact=""/> diff --git a/dependencies/php/classes/Ds_Deque.xml b/dependencies/php/classes/Ds_Deque.xml index 17e389077556a650c0fd70d503ad3fc6af21e2b6..e3f8c44f3937c2993b3041335cf470b9dd01d6a5 100644 --- a/dependencies/php/classes/Ds_Deque.xml +++ b/dependencies/php/classes/Ds_Deque.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="Ds\Deque" namespace="" name="Ds\Deque"> +<class xmlns="http://xml.phpdox.net/src" full="Ds\Deque" namespace="Ds" name="Deque"> <implements name="Ds\Sequence" full="Ds\Sequence"/> <constant name="MIN_CAPACITY" value="8"> <docblock> @@ -8,73 +8,73 @@ </constant> <method name="allocate" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Allocates enough memory for a required capacity."/> + <description compact="Allocates enough memory for a required capacity"/> <return type="void"/> </docblock> <parameter name="capacity" optional="false" byreference="false" type="int"/> </method> <method name="apply" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Updates all values by applying a callback function to each value."/> + <description compact="Updates all values by applying a callback function to each value"/> <return type="void"/> </docblock> <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> </method> <method name="capacity" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the current capacity."/> + <description compact="Returns the current capacity"/> <return type="int"/> </docblock> </method> <method name="clear" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Removes all values from the deque."/> + <description compact="Removes all values from the deque"/> <return type="void"/> </docblock> </method> <method name="contains" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Determines if the deque contains given values."/> + <description compact="Determines if the deque contains given values"/> <return type="bool"/> </docblock> <parameter name="...values" optional="true" byreference="false" type="object" class="mixed"/> </method> <method name="copy" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns a shallow copy of the deque."/> + <description compact="Returns a shallow copy of the deque"/> <return type="Ds\Deque"/> </docblock> </method> <method name="filter" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Creates a new deque using a callable to determine which values to include. "/> + <description compact=" Creates a new deque using a callable to determine which values to include "/> <return type="Ds\Deque"/> </docblock> <parameter name="callback" optional="true" byreference="false" type="object" class="callable"/> </method> <method name="find" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Attempts to find a value's index. "/> + <description compact=" Attempts to find a value's index "/> <return type="mixed"/> </docblock> <parameter name="value" optional="false" byreference="false" type="object" class="mixed"/> </method> <method name="first" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the first value in the deque."/> + <description compact="Returns the first value in the deque"/> <return type="mixed"/> </docblock> </method> <method name="get" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the value at a given index."/> + <description compact="Returns the value at a given index"/> <return type="mixed"/> </docblock> <parameter name="index" optional="false" byreference="false" type="int"/> </method> <method name="insert" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Inserts values at a given index."/> + <description compact="Inserts values at a given index"/> <return type="void"/> </docblock> <parameter name="index" optional="false" byreference="false" type="int"/> @@ -88,47 +88,47 @@ </method> <method name="join" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Joins all values together as a string."/> + <description compact="Joins all values together as a string"/> <return type="string"/> </docblock> <parameter name="glue" optional="true" byreference="false" type="string"/> </method> <method name="last" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the last value."/> + <description compact="Returns the last value"/> <return type="mixed"/> </docblock> </method> <method name="map" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the result of applying a callback to each value."/> + <description compact="Returns the result of applying a callback to each value"/> <return type="Ds\Deque"/> </docblock> <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> </method> <method name="merge" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the result of adding all given values to the deque."/> + <description compact="Returns the result of adding all given values to the deque"/> <return type="Ds\Deque"/> </docblock> <parameter name="values" optional="false" byreference="false" type="object" class="mixed"/> </method> <method name="pop" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Removes and returns the last value."/> + <description compact="Removes and returns the last value"/> <return type="mixed"/> </docblock> </method> <method name="push" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Adds values to the end of the deque."/> + <description compact="Adds values to the end of the deque"/> <return type="void"/> </docblock> <parameter name="...values" optional="true" byreference="false" type="object" class="mixed"/> </method> <method name="reduce" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Reduces the deque to a single value using a callback function."/> + <description compact="Reduces the deque to a single value using a callback function"/> <return type="mixed"/> </docblock> <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> @@ -136,33 +136,33 @@ </method> <method name="remove" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Removes and returns a value by index."/> + <description compact="Removes and returns a value by index"/> <return type="mixed"/> </docblock> <parameter name="index" optional="false" byreference="false" type="int"/> </method> <method name="reverse" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Reverses the deque in-place. "/> + <description compact=" Reverses the deque in-place "/> <return type="void"/> </docblock> </method> <method name="reversed" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns a reversed copy."/> + <description compact="Returns a reversed copy"/> <return type="Ds\Deque"/> </docblock> </method> <method name="rotate" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Rotates the deque by a given number of rotations."/> + <description compact="Rotates the deque by a given number of rotations"/> <return type="void"/> </docblock> <parameter name="rotations" optional="false" byreference="false" type="int"/> </method> <method name="set" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Updates a value at a given index."/> + <description compact="Updates a value at a given index"/> <return type="void"/> </docblock> <parameter name="index" optional="false" byreference="false" type="int"/> @@ -170,13 +170,13 @@ </method> <method name="shift" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Removes and returns the first value."/> + <description compact="Removes and returns the first value"/> <return type="mixed"/> </docblock> </method> <method name="slice" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Returns a sub-deque of a given range. "/> + <description compact=" Returns a sub-deque of a given range "/> <return type="Ds\Deque"/> </docblock> <parameter name="index" optional="false" byreference="false" type="int"/> @@ -184,33 +184,33 @@ </method> <method name="sort" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Sorts the deque in-place. "/> + <description compact=" Sorts the deque in-place "/> <return type="void"/> </docblock> <parameter name="comparator" optional="true" byreference="false" type="object" class="callable"/> </method> <method name="sorted" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns a sorted copy."/> + <description compact="Returns a sorted copy"/> <return type="Ds\Deque"/> </docblock> <parameter name="comparator" optional="true" byreference="false" type="object" class="callable"/> </method> <method name="sum" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the sum of all values in the deque.">Returns the sum of all values in the deque.</description> + <description compact="Returns the sum of all values in the deque">Returns the sum of all values in the deque.</description> <return type="number"/> </docblock> </method> <method name="toArray" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Converts the deque to an array. ">Converts the deque to an array.</description> + <description compact=" Converts the deque to an array ">Converts the deque to an array.</description> <return type="array"/> </docblock> </method> <method name="unshift" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Adds values to the front of the deque."/> + <description compact="Adds values to the front of the deque"/> <return type="void"/> </docblock> <parameter name="values" optional="true" byreference="false" type="object" class="mixed"/> diff --git a/dependencies/php/classes/Ds_Map.xml b/dependencies/php/classes/Ds_Map.xml index 6cb9530ee6686acfe350f1c76f05dd70da7a444b..655de70a28f66c08db943fd94b572256a12ba223 100644 --- a/dependencies/php/classes/Ds_Map.xml +++ b/dependencies/php/classes/Ds_Map.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="Ds\Map" namespace="" name="Ds\Map"> +<class xmlns="http://xml.phpdox.net/src" full="Ds\Map" namespace="Ds" name="Map"> <implements name="Ds\Collection" full="Ds\Collection"/> <constant name="MIN_CAPACITY" value="16"> <docblock> @@ -8,59 +8,59 @@ </constant> <method name="allocate" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Allocates enough memory for a required capacity."/> + <description compact="Allocates enough memory for a required capacity"/> <return type="void"/> </docblock> <parameter name="capacity" optional="false" byreference="false" type="int"/> </method> <method name="apply" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Updates all values by applying a callback function to each value."/> + <description compact="Updates all values by applying a callback function to each value"/> <return type="void"/> </docblock> <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> </method> <method name="capacity" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the current capacity."/> + <description compact="Returns the current capacity"/> <return type="int"/> </docblock> </method> <method name="clear" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Removes all values."/> + <description compact="Removes all values"/> <return type="void"/> </docblock> </method> <method name="copy" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns a shallow copy of the map."/> + <description compact="Returns a shallow copy of the map"/> <return type="Ds\Map"/> </docblock> </method> <method name="diff" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Creates a new map using keys that aren't in another map.">Returns the result of removing all keys from the current instance that are present in a given map.</description> + <description compact="Creates a new map using keys that aren't in another map">Returns the result of removing all keys from the current instance that are present in a given map.</description> <return type="Ds\Map"/> </docblock> <parameter name="map" optional="false" byreference="false" type="object" class="Ds\Map"/> </method> <method name="filter" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Creates a new map using a callable to determine which pairs to include. "/> + <description compact=" Creates a new map using a callable to determine which pairs to include "/> <return type="Ds\Map"/> </docblock> <parameter name="callback" optional="true" byreference="false" type="object" class="callable"/> </method> <method name="first" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the first pair in the map."/> + <description compact="Returns the first pair in the map"/> <return type="Ds\Pair"/> </docblock> </method> <method name="get" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the value for a given key.">Returns the value for a given key, or an optional default value if the key could not be found.</description> + <description compact="Returns the value for a given key">Returns the value for a given key, or an optional default value if the key could not be found.</description> <return type="mixed"/> </docblock> <parameter name="key" optional="false" byreference="false" type="object" class="mixed"/> @@ -68,21 +68,21 @@ </method> <method name="hasKey" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Determines whether the map contains a given key."/> + <description compact="Determines whether the map contains a given key"/> <return type="bool"/> </docblock> <parameter name="key" optional="false" byreference="false" type="object" class="mixed"/> </method> <method name="hasValue" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Determines whether the map contains a given value."/> + <description compact="Determines whether the map contains a given value"/> <return type="bool"/> </docblock> <parameter name="value" optional="false" byreference="false" type="object" class="mixed"/> </method> <method name="intersect" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Creates a new map by intersecting keys with another map.">Creates a new map containing the pairs of the current instance whose keys are also present in the given map. In other words, returns a copy of the current instance with all keys removed that are not also in the other map.</description> + <description compact="Creates a new map by intersecting keys with another map">Creates a new map containing the pairs of the current instance whose keys are also present in the given map. In other words, returns a copy of the current instance with all keys removed that are not also in the other map.</description> <return type="Ds\Map"/> </docblock> <parameter name="map" optional="false" byreference="false" type="object" class="Ds\Map"/> @@ -95,53 +95,53 @@ </method> <method name="keys" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns a set of the map's keys."/> + <description compact="Returns a set of the map's keys"/> <return type="Ds\Set"/> </docblock> </method> <method name="ksort" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Sorts the map in-place by key. "/> + <description compact=" Sorts the map in-place by key "/> <return type="void"/> </docblock> <parameter name="comparator" optional="true" byreference="false" type="object" class="callable"/> </method> <method name="ksorted" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns a copy, sorted by key."/> + <description compact="Returns a copy, sorted by key"/> <return type="Ds\Map"/> </docblock> <parameter name="comparator" optional="true" byreference="false" type="object" class="callable"/> </method> <method name="last" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the last pair of the map."/> + <description compact="Returns the last pair of the map"/> <return type="Ds\Pair"/> </docblock> </method> <method name="map" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the result of applying a callback to each value."/> + <description compact="Returns the result of applying a callback to each value"/> <return type="Ds\Map"/> </docblock> <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> </method> <method name="merge" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the result of adding all given associations.">Returns the result of associating all keys of a given traversable object or array with their corresponding values, combined with the current instance.</description> + <description compact="Returns the result of adding all given associations">Returns the result of associating all keys of a given traversable object or array with their corresponding values, combined with the current instance.</description> <return type="Ds\Map"/> </docblock> <parameter name="values" optional="false" byreference="false" type="object" class="mixed"/> </method> <method name="pairs" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns a sequence containing all the pairs of the map."/> + <description compact="Returns a sequence containing all the pairs of the map"/> <return type="Ds\Sequence"/> </docblock> </method> <method name="put" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Associates a key with a value.">Associates a key with a value, overwriting a previous association if one exists.</description> + <description compact="Associates a key with a value">Associates a key with a value, overwriting a previous association if one exists.</description> <return type="void"/> </docblock> <parameter name="key" optional="false" byreference="false" type="object" class="mixed"/> @@ -149,14 +149,14 @@ </method> <method name="putAll" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Associates all key-value pairs of a traversable object or array.">Associates all key-value pairs of a traversable object or array.</description> + <description compact="Associates all key-value pairs of a traversable object or array">Associates all key-value pairs of a traversable object or array.</description> <return type="void"/> </docblock> <parameter name="pairs" optional="false" byreference="false" type="object" class="mixed"/> </method> <method name="reduce" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Reduces the map to a single value using a callback function."/> + <description compact="Reduces the map to a single value using a callback function"/> <return type="mixed"/> </docblock> <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> @@ -164,7 +164,7 @@ </method> <method name="remove" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Removes and returns a value by key.">Removes and returns a value by key, or return an optional default value if the key could not be found.</description> + <description compact="Removes and returns a value by key">Removes and returns a value by key, or return an optional default value if the key could not be found.</description> <return type="mixed"/> </docblock> <parameter name="key" optional="false" byreference="false" type="object" class="mixed"/> @@ -172,26 +172,26 @@ </method> <method name="reverse" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Reverses the map in-place. "/> + <description compact=" Reverses the map in-place "/> <return type="void"/> </docblock> </method> <method name="reversed" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns a reversed copy."/> + <description compact="Returns a reversed copy"/> <return type="Ds\Map"/> </docblock> </method> <method name="skip" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the pair at a given positional index."/> + <description compact="Returns the pair at a given positional index"/> <return type="Ds\Pair"/> </docblock> <parameter name="position" optional="false" byreference="false" type="int"/> </method> <method name="slice" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Returns a subset of the map defined by a starting index and length. "/> + <description compact=" Returns a subset of the map defined by a starting index and length "/> <return type="Ds\Map"/> </docblock> <parameter name="index" optional="false" byreference="false" type="int"/> @@ -199,46 +199,46 @@ </method> <method name="sort" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Sorts the map in-place by value. "/> + <description compact=" Sorts the map in-place by value "/> <return type="void"/> </docblock> <parameter name="comparator" optional="true" byreference="false" type="object" class="callable"/> </method> <method name="sorted" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns a copy, sorted by value."/> + <description compact="Returns a copy, sorted by value"/> <return type="Ds\Map"/> </docblock> <parameter name="comparator" optional="true" byreference="false" type="object" class="callable"/> </method> <method name="sum" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the sum of all values in the map.">Returns the sum of all values in the map.</description> + <description compact="Returns the sum of all values in the map">Returns the sum of all values in the map.</description> <return type="number"/> </docblock> </method> <method name="toArray" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Converts the map to an array. ">Converts the map to an array.</description> + <description compact=" Converts the map to an array ">Converts the map to an array.</description> <return type="array"/> </docblock> </method> <method name="union" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Creates a new map using values from the current instance and another map.">Creates a new map that contains the pairs of the current instance as well as the pairs of another map.</description> + <description compact="Creates a new map using values from the current instance and another map">Creates a new map that contains the pairs of the current instance as well as the pairs of another map.</description> <return type="Ds\Map"/> </docblock> <parameter name="map" optional="false" byreference="false" type="object" class="Ds\Map"/> </method> <method name="values" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns a sequence of the map's values."/> + <description compact="Returns a sequence of the map's values"/> <return type="Ds\Sequence"/> </docblock> </method> <method name="xor" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Creates a new map using keys of either the current instance or of another map, but not of both.">Creates a new map containing keys of the current instance as well as another map, but not of both.</description> + <description compact="Creates a new map using keys of either the current instance or of another map, but not of both">Creates a new map containing keys of the current instance as well as another map, but not of both.</description> <return type="Ds\Map"/> </docblock> <parameter name="map" optional="false" byreference="false" type="object" class="Ds\Map"/> diff --git a/dependencies/php/classes/Ds_Pair.xml b/dependencies/php/classes/Ds_Pair.xml index 1c49b48316dec1d5dc057cb7ed7444aae77d68ff..19e5b44816a0f903c35b120b8909e214fcc9322c 100644 --- a/dependencies/php/classes/Ds_Pair.xml +++ b/dependencies/php/classes/Ds_Pair.xml @@ -1,12 +1,36 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="Ds\Pair" namespace="" name="Ds\Pair"> +<class xmlns="http://xml.phpdox.net/src" full="Ds\Pair" namespace="Ds" name="Pair"> <implements name="JsonSerializable" full="JsonSerializable"/> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Creates a new instance."/> + <description compact="Creates a new instance"/> <return type="void"/> </docblock> <parameter name="key" optional="true" byreference="false" type="object" class="mixed"/> <parameter name="value" optional="true" byreference="false" type="object" class="mixed"/> </constructor> + <method name="clear" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Removes all values"/> + <return type="void"/> + </docblock> + </method> + <method name="copy" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Returns a shallow copy of the pair"/> + <return type="Ds\Pair"/> + </docblock> + </method> + <method name="isEmpty" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Returns whether the pair is empty"/> + <return type="bool"/> + </docblock> + </method> + <method name="toArray" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=" Converts the pair to an array ">Converts the pair to an array.</description> + <return type="array"/> + </docblock> + </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/Ds_PriorityQueue.xml b/dependencies/php/classes/Ds_PriorityQueue.xml index 4f1622a95afa4bdfb1a4be253a7f9492df0f3888..48194a86c04c1d728b3aa138acc160a5e8dd22f9 100644 --- a/dependencies/php/classes/Ds_PriorityQueue.xml +++ b/dependencies/php/classes/Ds_PriorityQueue.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="Ds\PriorityQueue" namespace="" name="Ds\PriorityQueue"> +<class xmlns="http://xml.phpdox.net/src" full="Ds\PriorityQueue" namespace="Ds" name="PriorityQueue"> <implements name="Ds\Collection" full="Ds\Collection"/> <constant name="MIN_CAPACITY" value="8"> <docblock> @@ -8,26 +8,26 @@ </constant> <method name="allocate" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Allocates enough memory for a required capacity."/> + <description compact="Allocates enough memory for a required capacity"/> <return type="void"/> </docblock> <parameter name="capacity" optional="false" byreference="false" type="int"/> </method> <method name="capacity" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the current capacity."/> + <description compact="Returns the current capacity"/> <return type="int"/> </docblock> </method> <method name="clear" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Removes all values."/> + <description compact="Removes all values"/> <return type="void"/> </docblock> </method> <method name="copy" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns a shallow copy of the queue."/> + <description compact="Returns a shallow copy of the queue"/> <return type="Ds\PriorityQueue"/> </docblock> </method> @@ -39,19 +39,19 @@ </method> <method name="peek" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the value at the front of the queue."/> + <description compact="Returns the value at the front of the queue"/> <return type="mixed"/> </docblock> </method> <method name="pop" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Removes and returns the value with the highest priority.">Removes and returns the value at the front of the queue, ie. the value with the highest priority.</description> + <description compact="Removes and returns the value with the highest priority">Removes and returns the value at the front of the queue, ie. the value with the highest priority.</description> <return type="mixed"/> </docblock> </method> <method name="push" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Pushes values into the queue."/> + <description compact="Pushes values into the queue"/> <return type="void"/> </docblock> <parameter name="value" optional="false" byreference="false" type="object" class="mixed"/> @@ -59,7 +59,7 @@ </method> <method name="toArray" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Converts the queue to an array. ">Converts the queue to an array.</description> + <description compact=" Converts the queue to an array ">Converts the queue to an array.</description> <return type="array"/> </docblock> </method> diff --git a/dependencies/php/classes/Ds_Queue.xml b/dependencies/php/classes/Ds_Queue.xml index 54f0d75198b70806b0d42cab4ffd6438d993f5fd..0e1c20213680e1f06f0643065e7bc094b2d29c38 100644 --- a/dependencies/php/classes/Ds_Queue.xml +++ b/dependencies/php/classes/Ds_Queue.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="Ds\Queue" namespace="" name="Ds\Queue"> +<class xmlns="http://xml.phpdox.net/src" full="Ds\Queue" namespace="Ds" name="Queue"> <implements name="Ds\Collection" full="Ds\Collection"/> <constant name="MIN_CAPACITY" value="8"> <docblock> @@ -8,26 +8,26 @@ </constant> <method name="allocate" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Allocates enough memory for a required capacity.">Ensures that enough memory is allocated for a required capacity. This removes the need to reallocate the internal as values are added.</description> + <description compact="Allocates enough memory for a required capacity">Ensures that enough memory is allocated for a required capacity. This removes the need to reallocate the internal as values are added.</description> <return type="void"/> </docblock> <parameter name="capacity" optional="false" byreference="false" type="int"/> </method> <method name="capacity" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the current capacity."/> + <description compact="Returns the current capacity"/> <return type="int"/> </docblock> </method> <method name="clear" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Removes all values."/> + <description compact="Removes all values"/> <return type="void"/> </docblock> </method> <method name="copy" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns a shallow copy of the queue."/> + <description compact="Returns a shallow copy of the queue"/> <return type="Ds\Queue"/> </docblock> </method> @@ -39,26 +39,26 @@ </method> <method name="peek" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the value at the front of the queue."/> + <description compact="Returns the value at the front of the queue"/> <return type="mixed"/> </docblock> </method> <method name="pop" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Removes and returns the value at the front of the queue."/> + <description compact="Removes and returns the value at the front of the queue"/> <return type="mixed"/> </docblock> </method> <method name="push" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Pushes values into the queue."/> + <description compact="Pushes values into the queue"/> <return type="void"/> </docblock> <parameter name="...values" optional="true" byreference="false" type="object" class="mixed"/> </method> <method name="toArray" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Converts the queue to an array. ">Converts the queue to an array.</description> + <description compact=" Converts the queue to an array ">Converts the queue to an array.</description> <return type="array"/> </docblock> </method> diff --git a/dependencies/php/classes/Ds_Set.xml b/dependencies/php/classes/Ds_Set.xml index add5d1e72c78e622924a8bc67f4af7b835fb2ee4..1e7bf56762ddc440932382a7eba7440723f62710 100644 --- a/dependencies/php/classes/Ds_Set.xml +++ b/dependencies/php/classes/Ds_Set.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="Ds\Set" namespace="" name="Ds\Set"> +<class xmlns="http://xml.phpdox.net/src" full="Ds\Set" namespace="Ds" name="Set"> <implements name="Ds\Collection" full="Ds\Collection"/> <constant name="MIN_CAPACITY" value="16"> <docblock> @@ -8,73 +8,73 @@ </constant> <method name="add" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Adds values to the set.">Adds all given values to the set that haven't already been added.</description> + <description compact="Adds values to the set">Adds all given values to the set that haven't already been added.</description> <return type="void"/> </docblock> <parameter name="...values" optional="true" byreference="false" type="object" class="mixed"/> </method> <method name="allocate" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Allocates enough memory for a required capacity."/> + <description compact="Allocates enough memory for a required capacity"/> <return type="void"/> </docblock> <parameter name="capacity" optional="false" byreference="false" type="int"/> </method> <method name="capacity" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the current capacity."/> + <description compact="Returns the current capacity"/> <return type="int"/> </docblock> </method> <method name="clear" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Removes all values."/> + <description compact="Removes all values"/> <return type="void"/> </docblock> </method> <method name="contains" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Determines if the set contains all values.">Determines if the set contains all values.</description> + <description compact="Determines if the set contains all values">Determines if the set contains all values.</description> <return type="bool"/> </docblock> <parameter name="...values" optional="true" byreference="false" type="object" class="mixed"/> </method> <method name="copy" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns a shallow copy of the set."/> + <description compact="Returns a shallow copy of the set"/> <return type="Ds\Set"/> </docblock> </method> <method name="diff" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Creates a new set using values that aren't in another set.">Creates a new set using values that aren't in another set.</description> + <description compact="Creates a new set using values that aren't in another set">Creates a new set using values that aren't in another set.</description> <return type="Ds\Set"/> </docblock> <parameter name="set" optional="false" byreference="false" type="object" class="Ds\Set"/> </method> <method name="filter" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Creates a new set using a callable to determine which values to include. "/> + <description compact=" Creates a new set using a callable to determine which values to include "/> <return type="Ds\Set"/> </docblock> <parameter name="callback" optional="true" byreference="false" type="object" class="callable"/> </method> <method name="first" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the first value in the set."/> + <description compact="Returns the first value in the set"/> <return type="void"/> </docblock> </method> <method name="get" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the value at a given index."/> + <description compact="Returns the value at a given index"/> <return type="mixed"/> </docblock> <parameter name="index" optional="false" byreference="false" type="int"/> </method> <method name="intersect" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Creates a new set by intersecting values with another set.">Creates a new set using values common to both the current instance and another set. In other words, returns a copy of the current instance with all values removed that are not in the other set.</description> + <description compact="Creates a new set by intersecting values with another set">Creates a new set using values common to both the current instance and another set. In other words, returns a copy of the current instance with all values removed that are not in the other set.</description> <return type="Ds\Set"/> </docblock> <parameter name="set" optional="false" byreference="false" type="object" class="Ds\Set"/> @@ -87,27 +87,27 @@ </method> <method name="join" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Joins all values together as a string."/> + <description compact="Joins all values together as a string"/> <return type="string"/> </docblock> <parameter name="glue" optional="true" byreference="false" type="string"/> </method> <method name="last" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the last value in the set."/> + <description compact="Returns the last value in the set"/> <return type="void"/> </docblock> </method> <method name="merge" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the result of adding all given values to the set."/> + <description compact="Returns the result of adding all given values to the set"/> <return type="Ds\Set"/> </docblock> <parameter name="values" optional="false" byreference="false" type="object" class="mixed"/> </method> <method name="reduce" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Reduces the set to a single value using a callback function."/> + <description compact="Reduces the set to a single value using a callback function"/> <return type="mixed"/> </docblock> <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> @@ -115,26 +115,26 @@ </method> <method name="remove" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Removes all given values from the set."/> + <description compact="Removes all given values from the set"/> <return type="void"/> </docblock> <parameter name="...values" optional="true" byreference="false" type="object" class="mixed"/> </method> <method name="reverse" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Reverses the set in-place. "/> + <description compact=" Reverses the set in-place "/> <return type="void"/> </docblock> </method> <method name="reversed" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns a reversed copy."/> + <description compact="Returns a reversed copy"/> <return type="Ds\Set"/> </docblock> </method> <method name="slice" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Returns a sub-set of a given range. "/> + <description compact=" Returns a sub-set of a given range "/> <return type="Ds\Set"/> </docblock> <parameter name="index" optional="false" byreference="false" type="int"/> @@ -142,40 +142,40 @@ </method> <method name="sort" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Sorts the set in-place. "/> + <description compact=" Sorts the set in-place "/> <return type="void"/> </docblock> <parameter name="comparator" optional="true" byreference="false" type="object" class="callable"/> </method> <method name="sorted" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns a sorted copy."/> + <description compact="Returns a sorted copy"/> <return type="Ds\Set"/> </docblock> <parameter name="comparator" optional="true" byreference="false" type="object" class="callable"/> </method> <method name="sum" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the sum of all values in the set.">Returns the sum of all values in the set.</description> + <description compact="Returns the sum of all values in the set">Returns the sum of all values in the set.</description> <return type="number"/> </docblock> </method> <method name="toArray" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Converts the set to an array. ">Converts the set to an array.</description> + <description compact=" Converts the set to an array ">Converts the set to an array.</description> <return type="array"/> </docblock> </method> <method name="union" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Creates a new set using values from the current instance and another set.">Creates a new set that contains the values of the current instance as well as the values of another set.</description> + <description compact="Creates a new set using values from the current instance and another set">Creates a new set that contains the values of the current instance as well as the values of another set.</description> <return type="Ds\Set"/> </docblock> <parameter name="set" optional="false" byreference="false" type="object" class="Ds\Set"/> </method> <method name="xor" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Creates a new set using values in either the current instance or in another set, but not in both.">Creates a new set containing values in the current instance as well as another set, but not in both.</description> + <description compact="Creates a new set using values in either the current instance or in another set, but not in both">Creates a new set containing values in the current instance as well as another set, but not in both.</description> <return type="Ds\Set"/> </docblock> <parameter name="set" optional="false" byreference="false" type="object" class="Ds\Set"/> diff --git a/dependencies/php/classes/Ds_Stack.xml b/dependencies/php/classes/Ds_Stack.xml index 5ce48a374465599a7933731c8363bf5a193fec0d..049b955aa20092978e348dfc383826366eb924ed 100644 --- a/dependencies/php/classes/Ds_Stack.xml +++ b/dependencies/php/classes/Ds_Stack.xml @@ -1,28 +1,28 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="Ds\Stack" namespace="" name="Ds\Stack"> +<class xmlns="http://xml.phpdox.net/src" full="Ds\Stack" namespace="Ds" name="Stack"> <implements name="Ds\Collection" full="Ds\Collection"/> <method name="allocate" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Allocates enough memory for a required capacity."/> + <description compact="Allocates enough memory for a required capacity"/> <return type="void"/> </docblock> <parameter name="capacity" optional="false" byreference="false" type="int"/> </method> <method name="capacity" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the current capacity."/> + <description compact="Returns the current capacity"/> <return type="int"/> </docblock> </method> <method name="clear" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Removes all values."/> + <description compact="Removes all values"/> <return type="void"/> </docblock> </method> <method name="copy" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns a shallow copy of the stack."/> + <description compact="Returns a shallow copy of the stack"/> <return type="Ds\Stack"/> </docblock> </method> @@ -34,26 +34,26 @@ </method> <method name="peek" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the value at the top of the stack."/> + <description compact="Returns the value at the top of the stack"/> <return type="mixed"/> </docblock> </method> <method name="pop" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Removes and returns the value at the top of the stack."/> + <description compact="Removes and returns the value at the top of the stack"/> <return type="mixed"/> </docblock> </method> <method name="push" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Pushes values onto the stack."/> + <description compact="Pushes values onto the stack"/> <return type="void"/> </docblock> <parameter name="...values" optional="true" byreference="false" type="object" class="mixed"/> </method> <method name="toArray" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Converts the stack to an array. ">Converts the stack to an array.</description> + <description compact=" Converts the stack to an array ">Converts the stack to an array.</description> <return type="array"/> </docblock> </method> diff --git a/dependencies/php/classes/Ds_Vector.xml b/dependencies/php/classes/Ds_Vector.xml index 883b6746e3c0a24c366eb5fc9b962d00688cf0ba..5c04c81c73e1d263712ba8f796ae1b3d85b11a0c 100644 --- a/dependencies/php/classes/Ds_Vector.xml +++ b/dependencies/php/classes/Ds_Vector.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="Ds\Vector" namespace="" name="Ds\Vector"> +<class xmlns="http://xml.phpdox.net/src" full="Ds\Vector" namespace="Ds" name="Vector"> <implements name="Ds\Sequence" full="Ds\Sequence"/> <constant name="MIN_CAPACITY" value="10"> <docblock> @@ -8,73 +8,73 @@ </constant> <method name="allocate" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Allocates enough memory for a required capacity."/> + <description compact="Allocates enough memory for a required capacity"/> <return type="void"/> </docblock> <parameter name="capacity" optional="false" byreference="false" type="int"/> </method> <method name="apply" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Updates all values by applying a callback function to each value."/> + <description compact="Updates all values by applying a callback function to each value"/> <return type="void"/> </docblock> <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> </method> <method name="capacity" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the current capacity."/> + <description compact="Returns the current capacity"/> <return type="int"/> </docblock> </method> <method name="clear" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Removes all values."/> + <description compact="Removes all values"/> <return type="void"/> </docblock> </method> <method name="contains" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Determines if the vector contains given values."/> + <description compact="Determines if the vector contains given values"/> <return type="bool"/> </docblock> <parameter name="...values" optional="true" byreference="false" type="object" class="mixed"/> </method> <method name="copy" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns a shallow copy of the vector."/> + <description compact="Returns a shallow copy of the vector"/> <return type="Ds\Vector"/> </docblock> </method> <method name="filter" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Creates a new vector using a callable to determine which values to include. "/> + <description compact=" Creates a new vector using a callable to determine which values to include "/> <return type="Ds\Vector"/> </docblock> <parameter name="callback" optional="true" byreference="false" type="object" class="callable"/> </method> <method name="find" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Attempts to find a value's index. "/> + <description compact=" Attempts to find a value's index "/> <return type="mixed"/> </docblock> <parameter name="value" optional="false" byreference="false" type="object" class="mixed"/> </method> <method name="first" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the first value in the vector."/> + <description compact="Returns the first value in the vector"/> <return type="mixed"/> </docblock> </method> <method name="get" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the value at a given index."/> + <description compact="Returns the value at a given index"/> <return type="mixed"/> </docblock> <parameter name="index" optional="false" byreference="false" type="int"/> </method> <method name="insert" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Inserts values at a given index."/> + <description compact="Inserts values at a given index"/> <return type="void"/> </docblock> <parameter name="index" optional="false" byreference="false" type="int"/> @@ -88,47 +88,47 @@ </method> <method name="join" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Joins all values together as a string."/> + <description compact="Joins all values together as a string"/> <return type="string"/> </docblock> <parameter name="glue" optional="true" byreference="false" type="string"/> </method> <method name="last" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the last value."/> + <description compact="Returns the last value"/> <return type="mixed"/> </docblock> </method> <method name="map" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the result of applying a callback to each value."/> + <description compact="Returns the result of applying a callback to each value"/> <return type="Ds\Vector"/> </docblock> <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> </method> <method name="merge" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the result of adding all given values to the vector."/> + <description compact="Returns the result of adding all given values to the vector"/> <return type="Ds\Vector"/> </docblock> <parameter name="values" optional="false" byreference="false" type="object" class="mixed"/> </method> <method name="pop" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Removes and returns the last value."/> + <description compact="Removes and returns the last value"/> <return type="mixed"/> </docblock> </method> <method name="push" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Adds values to the end of the vector."/> + <description compact="Adds values to the end of the vector"/> <return type="void"/> </docblock> <parameter name="...values" optional="true" byreference="false" type="object" class="mixed"/> </method> <method name="reduce" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Reduces the vector to a single value using a callback function."/> + <description compact="Reduces the vector to a single value using a callback function"/> <return type="mixed"/> </docblock> <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> @@ -136,33 +136,33 @@ </method> <method name="remove" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Removes and returns a value by index."/> + <description compact="Removes and returns a value by index"/> <return type="mixed"/> </docblock> <parameter name="index" optional="false" byreference="false" type="int"/> </method> <method name="reverse" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Reverses the vector in-place. "/> + <description compact=" Reverses the vector in-place "/> <return type="void"/> </docblock> </method> <method name="reversed" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns a reversed copy."/> + <description compact="Returns a reversed copy"/> <return type="Ds\Vector"/> </docblock> </method> <method name="rotate" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Rotates the vector by a given number of rotations."/> + <description compact="Rotates the vector by a given number of rotations"/> <return type="void"/> </docblock> <parameter name="rotations" optional="false" byreference="false" type="int"/> </method> <method name="set" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Updates a value at a given index."/> + <description compact="Updates a value at a given index"/> <return type="void"/> </docblock> <parameter name="index" optional="false" byreference="false" type="int"/> @@ -170,13 +170,13 @@ </method> <method name="shift" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Removes and returns the first value."/> + <description compact="Removes and returns the first value"/> <return type="mixed"/> </docblock> </method> <method name="slice" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Returns a sub-vector of a given range. "/> + <description compact=" Returns a sub-vector of a given range "/> <return type="Ds\Vector"/> </docblock> <parameter name="index" optional="false" byreference="false" type="int"/> @@ -184,33 +184,33 @@ </method> <method name="sort" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Sorts the vector in-place. "/> + <description compact=" Sorts the vector in-place "/> <return type="void"/> </docblock> <parameter name="comparator" optional="true" byreference="false" type="object" class="callable"/> </method> <method name="sorted" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns a sorted copy."/> + <description compact="Returns a sorted copy"/> <return type="Ds\Vector"/> </docblock> <parameter name="comparator" optional="true" byreference="false" type="object" class="callable"/> </method> <method name="sum" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the sum of all values in the vector.">Returns the sum of all values in the vector.</description> + <description compact="Returns the sum of all values in the vector">Returns the sum of all values in the vector.</description> <return type="number"/> </docblock> </method> <method name="toArray" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Converts the vector to an array. ">Converts the vector to an array.</description> + <description compact=" Converts the vector to an array ">Converts the vector to an array.</description> <return type="array"/> </docblock> </method> <method name="unshift" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Adds values to the front of the vector."/> + <description compact="Adds values to the front of the vector"/> <return type="void"/> </docblock> <parameter name="values" optional="true" byreference="false" type="object" class="mixed"/> diff --git a/dependencies/php/classes/Ev.xml b/dependencies/php/classes/Ev.xml index 026846f37253626ea3f4a69f087d51f8d23c5e52..43f7d9b37b55b5f3f4fbe649cdfbd6acb0e440ed 100644 --- a/dependencies/php/classes/Ev.xml +++ b/dependencies/php/classes/Ev.xml @@ -172,7 +172,7 @@ </constant> <method name="backend" abstract="false" static="false" visibility="public" final="true"> <docblock> - <description compact="Returns an integer describing the backend used by libev."/> + <description compact="Returns an integer describing the backend used by libev"/> <return type="int"/> </docblock> </method> @@ -184,7 +184,7 @@ </method> <method name="embeddableBackends" abstract="false" static="false" visibility="public" final="true"> <docblock> - <description compact="Returns the set of backends that are embeddable in other event loops."/> + <description compact="Returns the set of backends that are embeddable in other event loops"/> <return type="void"/> </docblock> </method> @@ -204,25 +204,25 @@ </method> <method name="iteration" abstract="false" static="false" visibility="public" final="true"> <docblock> - <description compact="Return the number of times the default event loop has polled for new events."/> + <description compact="Return the number of times the default event loop has polled for new events"/> <return type="int"/> </docblock> </method> <method name="now" abstract="false" static="false" visibility="public" final="true"> <docblock> - <description compact="Returns the time when the last iteration of the default event loop has started."/> - <return type="double"/> + <description compact="Returns the time when the last iteration of the default event loop has started"/> + <return type="float"/> </docblock> </method> <method name="nowUpdate" abstract="false" static="false" visibility="public" final="true"> <docblock> - <description compact="Establishes the current time by querying the kernel, updating the time returned by Ev::now in the progress.">Establishes the current time by querying the kernel, updating the time returned by Ev::now in the progress. This is a costly operation and is usually done automatically within Ev::run .</description> + <description compact="Establishes the current time by querying the kernel, updating the time returned by Ev::now in the progress">Establishes the current time by querying the kernel, updating the time returned by Ev::now in the progress. This is a costly operation and is usually done automatically within Ev::run .</description> <return type="void"/> </docblock> </method> <method name="recommendedBackends" abstract="false" static="false" visibility="public" final="true"> <docblock> - <description compact="Returns a bit mask of recommended backends for current platform."/> + <description compact="Returns a bit mask of recommended backends for current platform"/> <return type="void"/> </docblock> </method> @@ -241,10 +241,10 @@ </method> <method name="sleep" abstract="false" static="false" visibility="public" final="true"> <docblock> - <description compact="Block the process for the given number of seconds."/> + <description compact="Block the process for the given number of seconds"/> <return type="void"/> </docblock> - <parameter name="seconds" optional="false" byreference="false" type="object" class="double"/> + <parameter name="seconds" optional="false" byreference="false" type="object" class="float"/> </method> <method name="stop" abstract="false" static="false" visibility="public" final="true"> <docblock> @@ -255,7 +255,7 @@ </method> <method name="supportedBackends" abstract="false" static="false" visibility="public" final="true"> <docblock> - <description compact="Returns the set of backends supported by current libev configuration."/> + <description compact="Returns the set of backends supported by current libev configuration"/> <return type="void"/> </docblock> </method> @@ -267,8 +267,8 @@ </method> <method name="time" abstract="false" static="false" visibility="public" final="true"> <docblock> - <description compact="Returns the current time in fractional seconds since the epoch."/> - <return type="double"/> + <description compact="Returns the current time in fractional seconds since the epoch"/> + <return type="float"/> </docblock> </method> <method name="verify" abstract="false" static="false" visibility="public" final="true"> diff --git a/dependencies/php/classes/EvEmbed.xml b/dependencies/php/classes/EvEmbed.xml index 6086ccc5a60635b119ff2c431ab4285023f5db91..9befefc8a5b45ebed889b03cb5cc72565e8a39f2 100644 --- a/dependencies/php/classes/EvEmbed.xml +++ b/dependencies/php/classes/EvEmbed.xml @@ -36,7 +36,7 @@ </method> <method name="sweep" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Make a single, non-blocking sweep over the embedded loop."/> + <description compact="Make a single, non-blocking sweep over the embedded loop"/> <return type="void"/> </docblock> </method> diff --git a/dependencies/php/classes/EvLoop.xml b/dependencies/php/classes/EvLoop.xml index c3cc81b82aac06c30351b5b795a126f8492dadb8..de84e83bd0ae025fbd6a969bd07537b3b5de57fd 100644 --- a/dependencies/php/classes/EvLoop.xml +++ b/dependencies/php/classes/EvLoop.xml @@ -50,7 +50,7 @@ </member> <method name="backend" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns an integer describing the backend used by libev."/> + <description compact="Returns an integer describing the backend used by libev"/> <return type="int"/> </docblock> </method> @@ -81,22 +81,22 @@ </docblock> <parameter name="flags" optional="true" byreference="false" type="int"/> <parameter name="data" optional="true" byreference="false" type="object" class="mixed"/> - <parameter name="io_interval" optional="true" byreference="false" type="object" class="double"/> - <parameter name="timeout_interval" optional="true" byreference="false" type="object" class="double"/> + <parameter name="io_interval" optional="true" byreference="false" type="object" class="float"/> + <parameter name="timeout_interval" optional="true" byreference="false" type="object" class="float"/> </constructor> <method name="defaultLoop" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns or creates the default event loop."/> + <description compact="Returns or creates the default event loop"/> <return type="EvLoop"/> </docblock> <parameter name="flags" optional="true" byreference="false" type="int"/> <parameter name="data" optional="true" byreference="false" type="object" class="mixed"/> - <parameter name="io_interval" optional="true" byreference="false" type="object" class="double"/> - <parameter name="timeout_interval" optional="true" byreference="false" type="object" class="double"/> + <parameter name="io_interval" optional="true" byreference="false" type="object" class="float"/> + <parameter name="timeout_interval" optional="true" byreference="false" type="object" class="float"/> </method> <method name="embed" abstract="false" static="false" visibility="public" final="true"> <docblock> - <description compact="Creates an instance of EvEmbed watcher associated with the current EvLoop object."/> + <description compact="Creates an instance of EvEmbed watcher associated with the current EvLoop object"/> <return type="EvEmbed"/> </docblock> <parameter name="other" optional="false" byreference="false" type="string"/> @@ -148,12 +148,12 @@ <method name="now" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Returns the current "event loop time""/> - <return type="double"/> + <return type="float"/> </docblock> </method> <method name="nowUpdate" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Establishes the current time by querying the kernel, updating the time returned by EvLoop::now in the progress."/> + <description compact="Establishes the current time by querying the kernel, updating the time returned by EvLoop::now in the progress"/> <return type="void"/> </docblock> </method> @@ -162,8 +162,8 @@ <description compact="Creates EvPeriodic watcher object associated with the current event loop instance"/> <return type="EvPeriodic"/> </docblock> - <parameter name="offset" optional="false" byreference="false" type="object" class="double"/> - <parameter name="interval" optional="false" byreference="false" type="object" class="double"/> + <parameter name="offset" optional="false" byreference="false" type="object" class="float"/> + <parameter name="interval" optional="false" byreference="false" type="object" class="float"/> <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> <parameter name="data" optional="true" byreference="false" type="object" class="mixed"/> <parameter name="priority" optional="true" byreference="false" type="int"/> @@ -206,7 +206,7 @@ <return type="EvStat"/> </docblock> <parameter name="path" optional="false" byreference="false" type="string"/> - <parameter name="interval" optional="false" byreference="false" type="object" class="double"/> + <parameter name="interval" optional="false" byreference="false" type="object" class="float"/> <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> <parameter name="data" optional="true" byreference="false" type="object" class="mixed"/> <parameter name="priority" optional="true" byreference="false" type="int"/> @@ -229,8 +229,8 @@ <description compact="Creates EvTimer watcher object associated with the current event loop instance"/> <return type="EvTimer"/> </docblock> - <parameter name="after" optional="false" byreference="false" type="object" class="double"/> - <parameter name="repeat" optional="false" byreference="false" type="object" class="double"/> + <parameter name="after" optional="false" byreference="false" type="object" class="float"/> + <parameter name="repeat" optional="false" byreference="false" type="object" class="float"/> <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> <parameter name="data" optional="true" byreference="false" type="object" class="mixed"/> <parameter name="priority" optional="true" byreference="false" type="int"/> diff --git a/dependencies/php/classes/EvPeriodic.xml b/dependencies/php/classes/EvPeriodic.xml index 84406e82035e11baf2bf4fbda81f866122792568..e958923d0046b9d034ba8c9a9a3502924159be12 100644 --- a/dependencies/php/classes/EvPeriodic.xml +++ b/dependencies/php/classes/EvPeriodic.xml @@ -39,14 +39,14 @@ </member> <method name="again" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Simply stops and restarts the periodic watcher again."/> + <description compact="Simply stops and restarts the periodic watcher again"/> <return type="void"/> </docblock> </method> <method name="at" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Returns the absolute time that this watcher is supposed to trigger next"/> - <return type="double"/> + <return type="float"/> </docblock> </method> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> @@ -54,7 +54,7 @@ <description compact="Constructs EvPeriodic watcher object"/> <return type="void"/> </docblock> - <parameter name="offset" optional="false" byreference="false" type="object" class="double"/> + <parameter name="offset" optional="false" byreference="false" type="object" class="float"/> <parameter name="interval" optional="false" byreference="false" type="string"/> <parameter name="reschedule_cb" optional="false" byreference="false" type="object" class="callable"/> <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> @@ -66,8 +66,8 @@ <description compact="Create a stopped EvPeriodic watcher"/> <return type="EvPeriodic"/> </docblock> - <parameter name="offset" optional="false" byreference="false" type="object" class="double"/> - <parameter name="interval" optional="false" byreference="false" type="object" class="double"/> + <parameter name="offset" optional="false" byreference="false" type="object" class="float"/> + <parameter name="interval" optional="false" byreference="false" type="object" class="float"/> <parameter name="reschedule_cb" optional="false" byreference="false" type="object" class="callable"/> <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> <parameter name="data" optional="true" byreference="false" type="object" class="mixed"/> @@ -78,8 +78,8 @@ <description compact="Configures the watcher"/> <return type="void"/> </docblock> - <parameter name="offset" optional="false" byreference="false" type="object" class="double"/> - <parameter name="interval" optional="false" byreference="false" type="object" class="double"/> + <parameter name="offset" optional="false" byreference="false" type="object" class="float"/> + <parameter name="interval" optional="false" byreference="false" type="object" class="float"/> </method> <method name="clear" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/EvSignal.xml b/dependencies/php/classes/EvSignal.xml index 2c43a0a7b6fe4cd095278aca9bf2ceb6053c2134..5890e81cef23b4b765841f3770645b73c964b741 100644 --- a/dependencies/php/classes/EvSignal.xml +++ b/dependencies/php/classes/EvSignal.xml @@ -33,7 +33,7 @@ </member> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Constructs EvPeriodic watcher object"/> + <description compact="Constructs EvSignal watcher object"/> <return type="void"/> </docblock> <parameter name="signum" optional="false" byreference="false" type="int"/> diff --git a/dependencies/php/classes/EvStat.xml b/dependencies/php/classes/EvStat.xml index ce0d2a58af2b4254c1bf1a57b334aba0edbd9b08..d8a30d2f935ae7a891b1792a76e7cb1d8d2902bd 100644 --- a/dependencies/php/classes/EvStat.xml +++ b/dependencies/php/classes/EvStat.xml @@ -49,7 +49,7 @@ <return type="void"/> </docblock> <parameter name="path" optional="false" byreference="false" type="string"/> - <parameter name="interval" optional="false" byreference="false" type="object" class="double"/> + <parameter name="interval" optional="false" byreference="false" type="object" class="float"/> <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> <parameter name="data" optional="true" byreference="false" type="object" class="mixed"/> <parameter name="priority" optional="true" byreference="false" type="int"/> @@ -60,7 +60,7 @@ <return type="void"/> </docblock> <parameter name="path" optional="false" byreference="false" type="string"/> - <parameter name="interval" optional="false" byreference="false" type="object" class="double"/> + <parameter name="interval" optional="false" byreference="false" type="object" class="float"/> <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> <parameter name="data" optional="true" byreference="false" type="object" class="mixed"/> <parameter name="priority" optional="true" byreference="false" type="int"/> @@ -77,7 +77,7 @@ <return type="void"/> </docblock> <parameter name="path" optional="false" byreference="false" type="string"/> - <parameter name="interval" optional="false" byreference="false" type="object" class="double"/> + <parameter name="interval" optional="false" byreference="false" type="object" class="float"/> </method> <method name="stat" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/EvTimer.xml b/dependencies/php/classes/EvTimer.xml index df1f45b0cbdfc579fb9fe9ddc4b7b4c4c599464d..bc23fb8886fd1e2f824ce4cf055fe3e96fc2cb56 100644 --- a/dependencies/php/classes/EvTimer.xml +++ b/dependencies/php/classes/EvTimer.xml @@ -48,8 +48,8 @@ <description compact="Constructs an EvTimer watcher object"/> <return type="void"/> </docblock> - <parameter name="after" optional="false" byreference="false" type="object" class="double"/> - <parameter name="repeat" optional="false" byreference="false" type="object" class="double"/> + <parameter name="after" optional="false" byreference="false" type="object" class="float"/> + <parameter name="repeat" optional="false" byreference="false" type="object" class="float"/> <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> <parameter name="data" optional="true" byreference="false" type="object" class="mixed"/> <parameter name="priority" optional="true" byreference="false" type="int"/> @@ -59,8 +59,8 @@ <description compact="Creates EvTimer stopped watcher object"/> <return type="EvTimer"/> </docblock> - <parameter name="after" optional="false" byreference="false" type="object" class="double"/> - <parameter name="repeat" optional="false" byreference="false" type="object" class="double"/> + <parameter name="after" optional="false" byreference="false" type="object" class="float"/> + <parameter name="repeat" optional="false" byreference="false" type="object" class="float"/> <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> <parameter name="data" optional="true" byreference="false" type="object" class="mixed"/> <parameter name="priority" optional="true" byreference="false" type="int"/> @@ -70,8 +70,8 @@ <description compact="Configures the watcher"/> <return type="void"/> </docblock> - <parameter name="after" optional="false" byreference="false" type="object" class="double"/> - <parameter name="repeat" optional="false" byreference="false" type="object" class="double"/> + <parameter name="after" optional="false" byreference="false" type="object" class="float"/> + <parameter name="repeat" optional="false" byreference="false" type="object" class="float"/> </method> <method name="clear" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/Event.xml b/dependencies/php/classes/Event.xml index 6ecb05d94c619c60ce3c5d9f4b3bb55f17d4d368..5fa3d599a9016d8f0809c00ce2d997944653ff89 100644 --- a/dependencies/php/classes/Event.xml +++ b/dependencies/php/classes/Event.xml @@ -42,21 +42,21 @@ <description compact="Makes event pending">Marks event pending. Non-pending event will never occur, and the event callback will never be called. In conjuction with Event::del an event could be re-scheduled by user at any time.</description> <return type="bool"/> </docblock> - <parameter name="timeout" optional="true" byreference="false" type="object" class="double"/> + <parameter name="timeout" optional="true" byreference="false" type="object" class="float"/> </method> <method name="addSignal" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Makes signal event pending"/> <return type="bool"/> </docblock> - <parameter name="timeout" optional="true" byreference="false" type="object" class="double"/> + <parameter name="timeout" optional="true" byreference="false" type="object" class="float"/> </method> <method name="addTimer" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Makes timer event pending"/> <return type="bool"/> </docblock> - <parameter name="timeout" optional="true" byreference="false" type="object" class="double"/> + <parameter name="timeout" optional="true" byreference="false" type="object" class="float"/> </method> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -89,7 +89,7 @@ </method> <method name="free" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Make event non-pending and free resources allocated for this event.">Removes event from the list of events monitored by libevent, and free resources allocated for the event.</description> + <description compact="Make event non-pending and free resources allocated for this event">Removes event from the list of events monitored by libevent, and free resources allocated for the event.</description> <return type="void"/> </docblock> </method> diff --git a/dependencies/php/classes/EventBase.xml b/dependencies/php/classes/EventBase.xml index 5e90ecef6aa2ac120957dbfed5ba075c8207e2fd..830d546306e5a8df7820e6e4126853e7181f7cbf 100644 --- a/dependencies/php/classes/EventBase.xml +++ b/dependencies/php/classes/EventBase.xml @@ -48,7 +48,7 @@ <description compact="Stop dispatching events"/> <return type="bool"/> </docblock> - <parameter name="timeout" optional="true" byreference="false" type="object" class="double"/> + <parameter name="timeout" optional="true" byreference="false" type="object" class="float"/> </method> <method name="free" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -71,7 +71,7 @@ <method name="getTimeOfDayCached" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Returns the current event base time"/> - <return type="double"/> + <return type="float"/> </docblock> </method> <method name="gotExit" abstract="false" static="false" visibility="public" final="false"> @@ -102,7 +102,7 @@ </method> <method name="reInit" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Re-initialize event base(after a fork)."/> + <description compact="Re-initialize event base(after a fork)"/> <return type="bool"/> </docblock> </method> diff --git a/dependencies/php/classes/EventBufferEvent.xml b/dependencies/php/classes/EventBufferEvent.xml index c117ea3e7f3143aa2e5591afa8fb2ea891740ddc..89eda1d16d71c0047baae2c13f4ee6cbe99a290d 100644 --- a/dependencies/php/classes/EventBufferEvent.xml +++ b/dependencies/php/classes/EventBufferEvent.xml @@ -138,14 +138,14 @@ </method> <method name="disable" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Disable events read, write, or both on a buffer event."/> + <description compact="Disable events read, write, or both on a buffer event"/> <return type="bool"/> </docblock> <parameter name="events" optional="false" byreference="false" type="int"/> </method> <method name="enable" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Enable events read, write, or both on a buffer event."/> + <description compact="Enable events read, write, or both on a buffer event"/> <return type="bool"/> </docblock> <parameter name="events" optional="false" byreference="false" type="int"/> @@ -247,31 +247,31 @@ </method> <method name="sslGetCipherInfo" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns a textual description of the cipher.">Retrieves description of the current cipher by means of the SSL_CIPHER_description SSL API function (see SSL_CIPHER_get_name(3) man page).</description> + <description compact="Returns a textual description of the cipher">Retrieves description of the current cipher by means of the SSL_CIPHER_description SSL API function (see SSL_CIPHER_get_name(3) man page).</description> <return type="string"/> </docblock> </method> <method name="sslGetCipherName" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the current cipher name of the SSL connection.">Retrieves name of cipher used by current SSL connection.</description> + <description compact="Returns the current cipher name of the SSL connection">Retrieves name of cipher used by current SSL connection.</description> <return type="string"/> </docblock> </method> <method name="sslGetCipherVersion" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns version of cipher used by current SSL connection.">Retrieves version of cipher used by current SSL connection.</description> + <description compact="Returns version of cipher used by current SSL connection">Retrieves version of cipher used by current SSL connection.</description> <return type="string"/> </docblock> </method> <method name="sslGetProtocol" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the name of the protocol used for current SSL connection.">Returns the name of the protocol used for current SSL connection.</description> + <description compact="Returns the name of the protocol used for current SSL connection">Returns the name of the protocol used for current SSL connection.</description> <return type="string"/> </docblock> </method> <method name="sslRenegotiate" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Tells a bufferevent to begin SSL renegotiation.">Tells a bufferevent to begin SSL renegotiation.</description> + <description compact="Tells a bufferevent to begin SSL renegotiation">Tells a bufferevent to begin SSL renegotiation.</description> <return type="void"/> </docblock> </method> diff --git a/dependencies/php/classes/EventListener.xml b/dependencies/php/classes/EventListener.xml index af92ce9d3e4798b89e3cc31f4114a9ec9ef186b2..b79a6511584e31ff5e3dc7e203d1d1d5fec722b6 100644 --- a/dependencies/php/classes/EventListener.xml +++ b/dependencies/php/classes/EventListener.xml @@ -64,7 +64,7 @@ </method> <method name="getSocketName" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Retreives the current address to which the listener's socket is bound."/> + <description compact="Retreives the current address to which the listener's socket is bound"/> <return type="bool"/> </docblock> <parameter name="address" optional="false" byreference="false" type="string"/> diff --git a/dependencies/php/classes/EventUtil.xml b/dependencies/php/classes/EventUtil.xml index 003f67dcd5f624bc3f8648f2d72bd9642781f842..92802a20b3cabdb8b1dba702c8eee5e83872fc30 100644 --- a/dependencies/php/classes/EventUtil.xml +++ b/dependencies/php/classes/EventUtil.xml @@ -149,7 +149,7 @@ </method> <method name="getSocketName" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Retreives the current address to which the socket is bound."/> + <description compact="Retreives the current address to which the socket is bound"/> <return type="bool"/> </docblock> <parameter name="socket" optional="false" byreference="false" type="object" class="mixed"/> diff --git a/dependencies/php/classes/FANNConnection.xml b/dependencies/php/classes/FANNConnection.xml index a79840c06b91cf6e126d1ba8b730efab2b46a508..b43ef10a9eca925146be8bc450a2c84f953223fc 100644 --- a/dependencies/php/classes/FANNConnection.xml +++ b/dependencies/php/classes/FANNConnection.xml @@ -29,7 +29,7 @@ </constructor> <method name="getFromNeuron" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the postions of starting neuron."/> + <description compact="Returns the postions of starting neuron"/> <return type="int"/> </docblock> </method> @@ -48,7 +48,7 @@ <method name="setWeight" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Sets the connections weight">Sets the connection weight.</description> - <return type="bool"/> + <return type="void"/> </docblock> <parameter name="weight" optional="false" byreference="false" type="object" class="float"/> </method> diff --git a/dependencies/php/classes/GearmanClient.xml b/dependencies/php/classes/GearmanClient.xml index 7217537516781320f3ac1f68e5d736a9104e3aa5..1bd3c7dfa118a80909b4ad07b91fdcb61fbc4b4e 100644 --- a/dependencies/php/classes/GearmanClient.xml +++ b/dependencies/php/classes/GearmanClient.xml @@ -204,7 +204,7 @@ </method> <method name="error" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns an error string for the last error encountered."/> + <description compact="Returns an error string for the last error encountered"/> <return type="string"/> </docblock> </method> diff --git a/dependencies/php/classes/GearmanWorker.xml b/dependencies/php/classes/GearmanWorker.xml index d24e3f1ef9f8a98f83dbb887cad52f88151d1a3f..4ea363e4acb59e2face72f398e2119ab0d6400a3 100644 --- a/dependencies/php/classes/GearmanWorker.xml +++ b/dependencies/php/classes/GearmanWorker.xml @@ -92,7 +92,7 @@ </method> <method name="setId" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Give the worker an identifier so it can be tracked when asking gearmand for the list of available workers."/> + <description compact="Give the worker an identifier so it can be tracked when asking gearmand for the list of available workers"/> <return type="bool"/> </docblock> <parameter name="id" optional="false" byreference="false" type="string"/> diff --git a/dependencies/php/classes/Gender_Gender.xml b/dependencies/php/classes/Gender_Gender.xml index fd30d354e3a865d16d1bffdbc6c2d579448c9b78..030a92123ae19384a4c1dfdf057eb0d4b1c3d6c8 100644 --- a/dependencies/php/classes/Gender_Gender.xml +++ b/dependencies/php/classes/Gender_Gender.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="Gender\Gender" namespace="" name="Gender\Gender"> +<class xmlns="http://xml.phpdox.net/src" full="Gender\Gender" namespace="Gender" name="Gender"> <constant name="IS_FEMALE" value="70"> <docblock> <var type="integer"/> @@ -312,14 +312,14 @@ </constant> <method name="connect" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Connect to an external name dictionary."/> - <return type="boolean"/> + <description compact="Connect to an external name dictionary"/> + <return type="bool"/> </docblock> <parameter name="dsn" optional="false" byreference="false" type="string"/> </method> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Construct the Gender object."/> + <description compact="Construct the Gender object"/> <return type="void"/> </docblock> <parameter name="dsn" optional="true" byreference="false" type="string"/> @@ -329,31 +329,31 @@ <description compact="Get textual country representation"/> <return type="array"/> </docblock> - <parameter name="country" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="country" optional="false" byreference="false" type="int"/> </method> <method name="get" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Get gender of a name."/> - <return type="integer"/> + <description compact="Get gender of a name"/> + <return type="int"/> </docblock> <parameter name="name" optional="false" byreference="false" type="string"/> - <parameter name="country" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="country" optional="true" byreference="false" type="int"/> </method> <method name="isNick" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Check if the name0 is an alias of the name1."/> + <description compact="Check if the name0 is an alias of the name1"/> <return type="array"/> </docblock> <parameter name="name0" optional="false" byreference="false" type="string"/> <parameter name="name1" optional="false" byreference="false" type="string"/> - <parameter name="country" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="country" optional="true" byreference="false" type="int"/> </method> <method name="similarNames" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Get similar names."/> + <description compact="Get similar names"/> <return type="array"/> </docblock> <parameter name="name" optional="false" byreference="false" type="string"/> - <parameter name="country" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="country" optional="true" byreference="false" type="int"/> </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/GlobIterator.xml b/dependencies/php/classes/GlobIterator.xml index c3b8cc2294158b9f9069769c44a4c5ac321ee4f4..78959736441d337fab42e6f80cdc2743eea9c487 100644 --- a/dependencies/php/classes/GlobIterator.xml +++ b/dependencies/php/classes/GlobIterator.xml @@ -1,12 +1,67 @@ <?xml version="1.0" encoding="UTF-8" ?> <class xmlns="http://xml.phpdox.net/src" full="GlobIterator" namespace="" name="GlobIterator"> <implements name="SeekableIterator" full="SeekableIterator"/> + <constant name="CURRENT_AS_PATHNAME" value="32"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="CURRENT_AS_FILEINFO" value="0"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="CURRENT_AS_SELF" value="16"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="CURRENT_MODE_MASK" value="240"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="KEY_AS_PATHNAME" value="0"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="KEY_AS_FILENAME" value="256"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="FOLLOW_SYMLINKS" value="512"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="KEY_MODE_MASK" value="3840"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="NEW_CURRENT_AND_KEY" value="256"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="SKIP_DOTS" value="4096"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="UNIX_PATHS" value="8192"> + <docblock> + <var type="integer"/> + </docblock> + </constant> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Construct a directory using glob"/> <return type="void"/> </docblock> - <parameter name="path" optional="false" byreference="false" type="string"/> + <parameter name="pattern" optional="false" byreference="false" type="string"/> <parameter name="flags" optional="true" byreference="false" type="int"/> </constructor> <method name="count" abstract="false" static="false" visibility="public" final="false"> diff --git a/dependencies/php/classes/Gmagick.xml b/dependencies/php/classes/Gmagick.xml index c248f8fb736fee43510826e0f4a796fbb78785ce..01636db1165c608910d35b56badd4996d24c1574 100644 --- a/dependencies/php/classes/Gmagick.xml +++ b/dependencies/php/classes/Gmagick.xml @@ -351,7 +351,7 @@ </method> <method name="getimageprofile" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the named image profile."/> + <description compact="Returns the named image profile"/> <return type="string"/> </docblock> <parameter name="name" optional="false" byreference="false" type="string"/> @@ -388,7 +388,7 @@ </method> <method name="getimagetype" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Gets the potential image type. "/> + <description compact="Gets the potential image type"/> <return type="int"/> </docblock> </method> @@ -412,25 +412,25 @@ </method> <method name="getpackagename" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the GraphicsMagick package name."/> + <description compact="Returns the GraphicsMagick package name"/> <return type="string"/> </docblock> </method> <method name="getquantumdepth" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the Gmagick quantum depth as a string. "/> + <description compact="Returns the Gmagick quantum depth as a string"/> <return type="array"/> </docblock> </method> <method name="getreleasedate" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the GraphicsMagick release date as a string. "/> + <description compact="Returns the GraphicsMagick release date as a string"/> <return type="string"/> </docblock> </method> <method name="getsamplingfactors" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Gets the horizontal and vertical sampling factor. "/> + <description compact="Gets the horizontal and vertical sampling factor"/> <return type="array"/> </docblock> </method> @@ -467,7 +467,7 @@ </method> <method name="labelimage" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Adds a label to an image. "/> + <description compact="Adds a label to an image"/> <return type="mixed"/> </docblock> <parameter name="label" optional="false" byreference="false" type="string"/> @@ -490,7 +490,7 @@ </method> <method name="mapimage" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Replaces the colors of an image with the closest color from a reference image."/> + <description compact="Replaces the colors of an image with the closest color from a reference image"/> <return type="Gmagick"/> </docblock> <parameter name="gmagick" optional="false" byreference="false" type="object" class="gmagick"/> @@ -610,7 +610,7 @@ </method> <method name="queryformats" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns formats supported by Gmagick."/> + <description compact="Returns formats supported by Gmagick"/> <return type="array"/> </docblock> <parameter name="pattern" optional="true" byreference="false" type="string"/> @@ -753,14 +753,14 @@ </method> <method name="setimagebackgroundcolor" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Sets the image background color. "/> + <description compact="Sets the image background color"/> <return type="Gmagick"/> </docblock> <parameter name="color" optional="false" byreference="false" type="object" class="GmagickPixel"/> </method> <method name="setimageblueprimary" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Sets the image chromaticity blue primary point."/> + <description compact="Sets the image chromaticity blue primary point"/> <return type="Gmagick"/> </docblock> <parameter name="x" optional="false" byreference="false" type="object" class="float"/> @@ -768,7 +768,7 @@ </method> <method name="setimagebordercolor" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Sets the image border color."/> + <description compact="Sets the image border color"/> <return type="Gmagick"/> </docblock> <parameter name="color" optional="false" byreference="false" type="object" class="GmagickPixel"/> @@ -839,7 +839,7 @@ </method> <method name="setimagegreenprimary" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Sets the image chromaticity green primary point. "/> + <description compact="Sets the image chromaticity green primary point"/> <return type="Gmagick"/> </docblock> <parameter name="x" optional="false" byreference="false" type="object" class="float"/> @@ -854,14 +854,14 @@ </method> <method name="setimageinterlacescheme" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Sets the interlace scheme of the image."/> + <description compact="Sets the interlace scheme of the image"/> <return type="Gmagick"/> </docblock> <parameter name="interlace" optional="false" byreference="false" type="int"/> </method> <method name="setimageiterations" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Sets the image iterations. "/> + <description compact="Sets the image iterations"/> <return type="Gmagick"/> </docblock> <parameter name="iterations" optional="false" byreference="false" type="int"/> @@ -876,7 +876,7 @@ </method> <method name="setimageredprimary" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Sets the image chromaticity red primary point. "/> + <description compact="Sets the image chromaticity red primary point"/> <return type="Gmagick"/> </docblock> <parameter name="x" optional="false" byreference="false" type="object" class="float"/> @@ -913,14 +913,14 @@ </method> <method name="setimageunits" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Sets the image units of resolution. "/> + <description compact="Sets the image units of resolution"/> <return type="Gmagick"/> </docblock> <parameter name="resolution" optional="false" byreference="false" type="int"/> </method> <method name="setimagewhitepoint" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Sets the image chromaticity white point. "/> + <description compact="Sets the image chromaticity white point"/> <return type="Gmagick"/> </docblock> <parameter name="x" optional="false" byreference="false" type="object" class="float"/> @@ -928,7 +928,7 @@ </method> <method name="setsamplingfactors" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Sets the image sampling factors. "/> + <description compact="Sets the image sampling factors"/> <return type="Gmagick"/> </docblock> <parameter name="factors" optional="false" byreference="false" type="object" class="array"/> diff --git a/dependencies/php/classes/GmagickDraw.xml b/dependencies/php/classes/GmagickDraw.xml index 513239e8dca7fd2c82be2f90f49dee5cf680d694..6f62a26498984e4728353e1bb707c93bce59283e 100644 --- a/dependencies/php/classes/GmagickDraw.xml +++ b/dependencies/php/classes/GmagickDraw.xml @@ -177,7 +177,7 @@ </method> <method name="setfillcolor" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Sets the fill color to be used for drawing filled objects. "/> + <description compact="Sets the fill color to be used for drawing filled objects"/> <return type="GmagickDraw"/> </docblock> <parameter name="color" optional="false" byreference="false" type="object" class="mixed"/> @@ -191,14 +191,14 @@ </method> <method name="setfont" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Sets the fully-specified font to use when annotating with text. "/> + <description compact="Sets the fully-specified font to use when annotating with text"/> <return type="GmagickDraw"/> </docblock> <parameter name="font" optional="false" byreference="false" type="string"/> </method> <method name="setfontsize" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Sets the font pointsize to use when annotating with text. "/> + <description compact="Sets the font pointsize to use when annotating with text"/> <return type="GmagickDraw"/> </docblock> <parameter name="pointsize" optional="false" byreference="false" type="object" class="float"/> @@ -219,21 +219,21 @@ </method> <method name="setstrokecolor" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Sets the color used for stroking object outlines. "/> + <description compact="Sets the color used for stroking object outlines"/> <return type="GmagickDraw"/> </docblock> <parameter name="color" optional="false" byreference="false" type="object" class="mixed"/> </method> <method name="setstrokeopacity" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Specifies the opacity of stroked object outlines."/> + <description compact="Specifies the opacity of stroked object outlines"/> <return type="GmagickDraw"/> </docblock> <parameter name="stroke_opacity" optional="false" byreference="false" type="object" class="float"/> </method> <method name="setstrokewidth" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Sets the width of the stroke used to draw object outlines. "/> + <description compact="Sets the width of the stroke used to draw object outlines"/> <return type="GmagickDraw"/> </docblock> <parameter name="width" optional="false" byreference="false" type="object" class="float"/> diff --git a/dependencies/php/classes/HRTime_PerformanceCounter.xml b/dependencies/php/classes/HRTime_PerformanceCounter.xml index d2c7c3d464231012ff44522c061f431a9cb67327..720422c52ad75279d340653d3534883dfaac68ef 100644 --- a/dependencies/php/classes/HRTime_PerformanceCounter.xml +++ b/dependencies/php/classes/HRTime_PerformanceCounter.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="HRTime\PerformanceCounter" namespace="" name="HRTime\PerformanceCounter"> +<class xmlns="http://xml.phpdox.net/src" full="HRTime\PerformanceCounter" namespace="HRTime" name="PerformanceCounter"> <method name="getFrequency" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Timer frequency in ticks per second"/> @@ -17,6 +17,6 @@ <description compact="Ticks elapsed since the given value"/> <return type="int"/> </docblock> - <parameter name="start" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="start" optional="false" byreference="false" type="int"/> </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/HRTime_StopWatch.xml b/dependencies/php/classes/HRTime_StopWatch.xml index 0e388c0db63714924748754324a90e4efeccc616..d47c4b7dfcd1ef939f9089334803ccb2f207dd19 100644 --- a/dependencies/php/classes/HRTime_StopWatch.xml +++ b/dependencies/php/classes/HRTime_StopWatch.xml @@ -1,35 +1,35 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="HRTime\StopWatch" namespace="" name="HRTime\StopWatch"> +<class xmlns="http://xml.phpdox.net/src" full="HRTime\StopWatch" namespace="HRTime" name="StopWatch"> <extends name="HRTime\PerformanceCounter" full="HRTime\PerformanceCounter"/> <method name="getElapsedTicks" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Get elapsed ticks for all intervals."/> + <description compact="Get elapsed ticks for all intervals"/> <return type="int"/> </docblock> </method> <method name="getElapsedTime" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Get elapsed time for all intervals."/> + <description compact="Get elapsed time for all intervals"/> <return type="float"/> </docblock> - <parameter name="unit" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="unit" optional="true" byreference="false" type="int"/> </method> <method name="getLastElapsedTicks" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Get elapsed ticks for the last interval."/> + <description compact="Get elapsed ticks for the last interval"/> <return type="int"/> </docblock> </method> <method name="getLastElapsedTime" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Get elapsed time for the last interval."/> + <description compact="Get elapsed time for the last interval"/> <return type="float"/> </docblock> - <parameter name="unit" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="unit" optional="true" byreference="false" type="int"/> </method> <method name="isRunning" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Whether the measurement is running."/> + <description compact="Whether the measurement is running"/> <return type="bool"/> </docblock> </method> @@ -62,6 +62,6 @@ <description compact=""/> <return type="int"/> </docblock> - <parameter name="start" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="start" optional="false" byreference="false" type="int"/> </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/HRTime_Unit.xml b/dependencies/php/classes/HRTime_Unit.xml index 8ba08efd79a466d575924b850615f44ac591a5bd..cd1c9c4d3d8f5c8f7a689229f62f82abee1a29e7 100644 --- a/dependencies/php/classes/HRTime_Unit.xml +++ b/dependencies/php/classes/HRTime_Unit.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="HRTime\Unit" namespace="" name="HRTime\Unit"> +<class xmlns="http://xml.phpdox.net/src" full="HRTime\Unit" namespace="HRTime" name="Unit"> <constant name="SECOND" value="0"> <docblock> <var type="integer"/> diff --git a/dependencies/php/classes/HashContext.xml b/dependencies/php/classes/HashContext.xml new file mode 100644 index 0000000000000000000000000000000000000000..dd93a8e7d71ef4226560f85a5abf7f53cd013854 --- /dev/null +++ b/dependencies/php/classes/HashContext.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="HashContext" namespace="" name="HashContext"> + <constructor name="__construct" abstract="false" static="false" final="false"> + <docblock> + <description compact="Private constructor to disallow direct instantiation"/> + <return type="void"/> + </docblock> + </constructor> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Imagick.xml b/dependencies/php/classes/Imagick.xml index 510d1089f6a4ee3dc587f369551f342310763d0f..c0b97f124728ba963025863015fac1416c5a4353 100644 --- a/dependencies/php/classes/Imagick.xml +++ b/dependencies/php/classes/Imagick.xml @@ -18,6 +18,7 @@ <parameter name="columns" optional="false" byreference="false" type="int"/> <parameter name="rows" optional="false" byreference="false" type="int"/> <parameter name="bestfit" optional="true" byreference="false" type="object" class="bool"/> + <parameter name="legacy" optional="true" byreference="false" type="object" class="bool"/> </method> <method name="adaptiveSharpenImage" abstract="false" static="false" final="false"> <docblock> @@ -87,9 +88,9 @@ <method name="autoLevelImage" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Description"/> - <return type="void"/> + <return type="bool"/> </docblock> - <parameter name="CHANNEL" optional="true" byreference="false" type="string"/> + <parameter name="channel" optional="true" byreference="false" type="int"/> </method> <method name="averageImages" abstract="false" static="false" final="false"> <docblock> @@ -107,7 +108,7 @@ <method name="blueShiftImage" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Description"/> - <return type="void"/> + <return type="bool"/> </docblock> <parameter name="factor" optional="true" byreference="false" type="object" class="float"/> </method> @@ -132,11 +133,11 @@ <method name="brightnessContrastImage" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Description"/> - <return type="void"/> + <return type="bool"/> </docblock> - <parameter name="brightness" optional="false" byreference="false" type="string"/> - <parameter name="contrast" optional="false" byreference="false" type="string"/> - <parameter name="CHANNEL" optional="true" byreference="false" type="string"/> + <parameter name="brightness" optional="false" byreference="false" type="object" class="float"/> + <parameter name="contrast" optional="false" byreference="false" type="object" class="float"/> + <parameter name="channel" optional="true" byreference="false" type="int"/> </method> <method name="charcoalImage" abstract="false" static="false" final="false"> <docblock> @@ -159,9 +160,9 @@ <method name="clampImage" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Description"/> - <return type="void"/> + <return type="bool"/> </docblock> - <parameter name="CHANNEL" optional="true" byreference="false" type="string"/> + <parameter name="channel" optional="true" byreference="false" type="int"/> </method> <method name="clear" abstract="false" static="false" final="false"> <docblock> @@ -203,7 +204,7 @@ <return type="bool"/> </docblock> <parameter name="lookup_table" optional="false" byreference="false" type="object" class="Imagick"/> - <parameter name="channel" optional="true" byreference="false" type="object" class="float"/> + <parameter name="channel" optional="true" byreference="false" type="int"/> </method> <method name="coalesceImages" abstract="false" static="false" final="false"> <docblock> @@ -229,13 +230,14 @@ </docblock> <parameter name="colorize" optional="false" byreference="false" type="object" class="mixed"/> <parameter name="opacity" optional="false" byreference="false" type="object" class="mixed"/> + <parameter name="legacy" optional="true" byreference="false" type="object" class="bool"/> </method> <method name="colorMatrixImage" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Description"/> - <return type="void"/> + <return type="bool"/> </docblock> - <parameter name="color_matrix" optional="false" byreference="false" type="string"/> + <parameter name="color_matrix" optional="false" byreference="false" type="object" class="array"/> </method> <method name="combineImages" abstract="false" static="false" final="false"> <docblock> @@ -291,7 +293,7 @@ <description compact="The Imagick constructor"/> <return type="void"/> </docblock> - <parameter name="files" optional="false" byreference="false" type="object" class="mixed"/> + <parameter name="files" optional="true" byreference="false" type="object" class="mixed"/> </constructor> <method name="contrastImage" abstract="false" static="false" final="false"> <docblock> @@ -319,10 +321,10 @@ </method> <method name="count" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Description"/> - <return type="void"/> + <description compact="Get the number of images"/> + <return type="int"/> </docblock> - <parameter name="mode" optional="true" byreference="false" type="string"/> + <parameter name="mode" optional="true" byreference="false" type="int"/> </method> <method name="cropImage" abstract="false" static="false" final="false"> <docblock> @@ -341,6 +343,7 @@ </docblock> <parameter name="width" optional="false" byreference="false" type="int"/> <parameter name="height" optional="false" byreference="false" type="int"/> + <parameter name="legacy" optional="true" byreference="false" type="object" class="bool"/> </method> <method name="current" abstract="false" static="false" final="false"> <docblock> @@ -378,7 +381,7 @@ <method name="deleteImageProperty" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Description"/> - <return type="void"/> + <return type="bool"/> </docblock> <parameter name="name" optional="false" byreference="false" type="string"/> </method> @@ -499,10 +502,10 @@ <method name="filter" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Description"/> - <return type="void"/> + <return type="bool"/> </docblock> <parameter name="ImagickKernel" optional="false" byreference="false" type="object" class="ImagickKernel"/> - <parameter name="CHANNEL" optional="true" byreference="false" type="int"/> + <parameter name="channel" optional="true" byreference="false" type="int"/> </method> <method name="flattenImages" abstract="false" static="false" final="false"> <docblock> @@ -538,7 +541,7 @@ <method name="forwardFourierTransformimage" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="void"/> + <return type="bool"/> </docblock> <parameter name="magnitude" optional="false" byreference="false" type="object" class="bool"/> </method> @@ -1222,7 +1225,7 @@ <method name="identifyFormat" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Description"/> - <return type="string|false"/> + <return type="string"/> </docblock> <parameter name="embedText" optional="false" byreference="false" type="string"/> </method> @@ -1256,10 +1259,10 @@ <method name="inverseFourierTransformImage" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Description"/> - <return type="void"/> + <return type="bool"/> </docblock> - <parameter name="complement" optional="false" byreference="false" type="string"/> - <parameter name="magnitude" optional="false" byreference="false" type="string"/> + <parameter name="complement" optional="false" byreference="false" type="object" class="Imagick"/> + <parameter name="magnitude" optional="false" byreference="false" type="object" class="bool"/> </method> <method name="labelImage" abstract="false" static="false" final="false"> <docblock> @@ -1310,7 +1313,7 @@ </method> <method name="mapImage" abstract="false" static="false" final="false"> <docblock> - <description compact="Replaces the colors of an image with the closest color from a reference image."/> + <description compact="Replaces the colors of an image with the closest color from a reference image"/> <return type="bool"/> </docblock> <parameter name="map" optional="false" byreference="false" type="object" class="Imagick"/> @@ -1377,12 +1380,12 @@ <method name="morphology" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Description"/> - <return type="void"/> + <return type="bool"/> </docblock> <parameter name="morphologyMethod" optional="false" byreference="false" type="int"/> <parameter name="iterations" optional="false" byreference="false" type="int"/> <parameter name="ImagickKernel" optional="false" byreference="false" type="object" class="ImagickKernel"/> - <parameter name="CHANNEL" optional="true" byreference="false" type="string"/> + <parameter name="channel" optional="true" byreference="false" type="int"/> </method> <method name="mosaicImages" abstract="false" static="false" final="false"> <docblock> @@ -1661,9 +1664,9 @@ <method name="readImages" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="Imagick"/> + <return type="bool"/> </docblock> - <parameter name="filenames" optional="false" byreference="false" type="string"/> + <parameter name="filenames" optional="false" byreference="false" type="object" class="array"/> </method> <method name="recolorImage" abstract="false" static="false" final="false"> <docblock> @@ -1733,6 +1736,7 @@ <parameter name="filter" optional="false" byreference="false" type="int"/> <parameter name="blur" optional="false" byreference="false" type="object" class="float"/> <parameter name="bestfit" optional="true" byreference="false" type="object" class="bool"/> + <parameter name="legacy" optional="true" byreference="false" type="object" class="bool"/> </method> <method name="rollImage" abstract="false" static="false" final="false"> <docblock> @@ -1753,10 +1757,10 @@ <method name="rotationalBlurImage" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Description"/> - <return type="void"/> + <return type="bool"/> </docblock> - <parameter name="angle" optional="false" byreference="false" type="string"/> - <parameter name="CHANNEL" optional="true" byreference="false" type="string"/> + <parameter name="angle" optional="false" byreference="false" type="object" class="float"/> + <parameter name="channel" optional="true" byreference="false" type="int"/> </method> <method name="roundCorners" abstract="false" static="false" final="false"> <docblock> @@ -1785,6 +1789,7 @@ <parameter name="cols" optional="false" byreference="false" type="int"/> <parameter name="rows" optional="false" byreference="false" type="int"/> <parameter name="bestfit" optional="true" byreference="false" type="object" class="bool"/> + <parameter name="legacy" optional="true" byreference="false" type="object" class="bool"/> </method> <method name="segmentImage" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -1799,12 +1804,12 @@ <method name="selectiveBlurImage" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Description"/> - <return type="void"/> + <return type="bool"/> </docblock> <parameter name="radius" optional="false" byreference="false" type="object" class="float"/> <parameter name="sigma" optional="false" byreference="false" type="object" class="float"/> <parameter name="threshold" optional="false" byreference="false" type="object" class="float"/> - <parameter name="CHANNEL" optional="false" byreference="false" type="int"/> + <parameter name="channel" optional="true" byreference="false" type="int"/> </method> <method name="separateImageChannel" abstract="false" static="false" final="false"> <docblock> @@ -1907,7 +1912,7 @@ <method name="setImageAttribute" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Description"/> - <return type="void"/> + <return type="bool"/> </docblock> <parameter name="key" optional="false" byreference="false" type="string"/> <parameter name="value" optional="false" byreference="false" type="string"/> @@ -2260,14 +2265,14 @@ <method name="setProgressMonitor" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Description"/> - <return type="void"/> + <return type="bool"/> </docblock> <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> </method> <method name="setRegistry" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Description"/> - <return type="void"/> + <return type="bool"/> </docblock> <parameter name="key" optional="false" byreference="false" type="string"/> <parameter name="value" optional="false" byreference="false" type="string"/> @@ -2282,7 +2287,7 @@ </method> <method name="setResourceLimit" abstract="false" static="false" final="false"> <docblock> - <description compact="Sets the limit for a particular resource in megabytes"/> + <description compact="Sets the limit for a particular resource"/> <return type="bool"/> </docblock> <parameter name="type" optional="false" byreference="false" type="int"/> @@ -2388,8 +2393,8 @@ <description compact="Description"/> <return type="Imagick"/> </docblock> - <parameter name="stack" optional="false" byreference="false" type="string"/> - <parameter name="offset" optional="false" byreference="false" type="string"/> + <parameter name="stack" optional="false" byreference="false" type="object" class="bool"/> + <parameter name="offset" optional="false" byreference="false" type="int"/> </method> <method name="solarizeImage" abstract="false" static="false" final="false"> <docblock> @@ -2427,12 +2432,12 @@ <method name="statisticImage" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Description"/> - <return type="void"/> + <return type="bool"/> </docblock> <parameter name="type" optional="false" byreference="false" type="int"/> <parameter name="width" optional="false" byreference="false" type="int"/> <parameter name="height" optional="false" byreference="false" type="int"/> - <parameter name="CHANNEL" optional="true" byreference="false" type="string"/> + <parameter name="channel" optional="true" byreference="false" type="int"/> </method> <method name="steganoImage" abstract="false" static="false" final="false"> <docblock> @@ -2495,6 +2500,7 @@ <parameter name="rows" optional="false" byreference="false" type="int"/> <parameter name="bestfit" optional="true" byreference="false" type="object" class="bool"/> <parameter name="fill" optional="true" byreference="false" type="object" class="bool"/> + <parameter name="legacy" optional="true" byreference="false" type="object" class="bool"/> </method> <method name="tintImage" abstract="false" static="false" final="false"> <docblock> @@ -2503,10 +2509,11 @@ </docblock> <parameter name="tint" optional="false" byreference="false" type="object" class="mixed"/> <parameter name="opacity" optional="false" byreference="false" type="object" class="mixed"/> + <parameter name="legacy" optional="true" byreference="false" type="object" class="bool"/> </method> <method name="__toString" abstract="false" static="false" final="false"> <docblock> - <description compact="Returns the image as a string."/> + <description compact="Returns the image as a string"/> <return type="string"/> </docblock> </method> @@ -2520,7 +2527,7 @@ </method> <method name="transformImageColorspace" abstract="false" static="false" final="false"> <docblock> - <description compact="Transforms an image to a new colorspace."/> + <description compact="Transforms an image to a new colorspace"/> <return type="bool"/> </docblock> <parameter name="colorspace" optional="false" byreference="false" type="int"/> @@ -2615,6 +2622,7 @@ <return type="bool"/> </docblock> <parameter name="filehandle" optional="false" byreference="false" type="object" class="resource"/> + <parameter name="format" optional="true" byreference="false" type="string"/> </method> <method name="writeImages" abstract="false" static="false" final="false"> <docblock> @@ -2630,5 +2638,6 @@ <return type="bool"/> </docblock> <parameter name="filehandle" optional="false" byreference="false" type="object" class="resource"/> + <parameter name="format" optional="true" byreference="false" type="string"/> </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/ImagickDraw.xml b/dependencies/php/classes/ImagickDraw.xml index bb546d41e646115bf3b0a72abd81f2a2e4ec49f9..9b5f947fed65ce27968ab509a9051736b04f8e1a 100644 --- a/dependencies/php/classes/ImagickDraw.xml +++ b/dependencies/php/classes/ImagickDraw.xml @@ -593,7 +593,7 @@ <method name="resetVectorGraphics" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Description"/> - <return type="void"/> + <return type="bool"/> </docblock> </method> <method name="rotate" abstract="false" static="false" final="false"> @@ -731,10 +731,10 @@ <method name="setResolution" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Description"/> - <return type="void"/> + <return type="bool"/> </docblock> - <parameter name="x_resolution" optional="false" byreference="false" type="string"/> - <parameter name="y_resolution" optional="false" byreference="false" type="string"/> + <parameter name="x_resolution" optional="false" byreference="false" type="object" class="float"/> + <parameter name="y_resolution" optional="false" byreference="false" type="object" class="float"/> </method> <method name="setStrokeAlpha" abstract="false" static="false" final="false"> <docblock> @@ -844,21 +844,21 @@ <method name="setTextInterlineSpacing" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Description"/> - <return type="void"/> + <return type="bool"/> </docblock> <parameter name="spacing" optional="false" byreference="false" type="object" class="float"/> </method> <method name="setTextInterwordSpacing" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Description"/> - <return type="void"/> + <return type="bool"/> </docblock> <parameter name="spacing" optional="false" byreference="false" type="object" class="float"/> </method> <method name="setTextKerning" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Description"/> - <return type="void"/> + <return type="bool"/> </docblock> <parameter name="kerning" optional="false" byreference="false" type="object" class="float"/> </method> diff --git a/dependencies/php/classes/ImagickKernel.xml b/dependencies/php/classes/ImagickKernel.xml index 339220cc9d9380c09c163de8331716f0015baf23..9a14d65d482486cad8af5e0ffff074f6c70bb089 100644 --- a/dependencies/php/classes/ImagickKernel.xml +++ b/dependencies/php/classes/ImagickKernel.xml @@ -12,13 +12,14 @@ <description compact="Description"/> <return type="void"/> </docblock> + <parameter name="scale" optional="false" byreference="false" type="object" class="float"/> </method> <method name="fromBuiltin" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> <return type="ImagickKernel"/> </docblock> - <parameter name="kernelType" optional="false" byreference="false" type="string"/> + <parameter name="kernelType" optional="false" byreference="false" type="int"/> <parameter name="kernelString" optional="false" byreference="false" type="string"/> </method> <method name="fromMatrix" abstract="false" static="false" visibility="public" final="false"> @@ -40,6 +41,8 @@ <description compact="Description"/> <return type="void"/> </docblock> + <parameter name="scale" optional="false" byreference="false" type="object" class="float"/> + <parameter name="normalizeFlag" optional="true" byreference="false" type="int"/> </method> <method name="separate" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/ImagickPixel.xml b/dependencies/php/classes/ImagickPixel.xml index f2050a7b4306431dbf8459973dc1170ff92a69ec..38cbba3306dd1fb998fc13275b4f0c6709bd1a4e 100644 --- a/dependencies/php/classes/ImagickPixel.xml +++ b/dependencies/php/classes/ImagickPixel.xml @@ -24,7 +24,7 @@ <description compact="Returns the color"/> <return type="array"/> </docblock> - <parameter name="normalized" optional="true" byreference="false" type="object" class="bool"/> + <parameter name="normalized" optional="true" byreference="false" type="int"/> </method> <method name="getColorAsString" abstract="false" static="false" final="false"> <docblock> @@ -41,7 +41,7 @@ <method name="getColorQuantum" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Description"/> - <return type="mixed"/> + <return type="array"/> </docblock> </method> <method name="getColorValue" abstract="false" static="false" final="false"> @@ -54,8 +54,9 @@ <method name="getColorValueQuantum" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Description"/> - <return type="mixed"/> + <return type="number"/> </docblock> + <parameter name="color" optional="false" byreference="false" type="int"/> </method> <method name="getHSL" abstract="false" static="false" final="false"> <docblock> @@ -103,9 +104,9 @@ <method name="setcolorcount" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="void"/> + <return type="bool"/> </docblock> - <parameter name="colorCount" optional="false" byreference="false" type="string"/> + <parameter name="colorCount" optional="false" byreference="false" type="int"/> </method> <method name="setColorValue" abstract="false" static="false" final="false"> <docblock> @@ -118,10 +119,10 @@ <method name="setColorValueQuantum" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Description"/> - <return type="void"/> + <return type="bool"/> </docblock> <parameter name="color" optional="false" byreference="false" type="int"/> - <parameter name="value" optional="false" byreference="false" type="object" class="mixed"/> + <parameter name="value" optional="false" byreference="false" type="object" class="number"/> </method> <method name="setHSL" abstract="false" static="false" final="false"> <docblock> @@ -135,7 +136,7 @@ <method name="setIndex" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Description"/> - <return type="void"/> + <return type="bool"/> </docblock> <parameter name="index" optional="false" byreference="false" type="int"/> </method> diff --git a/dependencies/php/classes/IntlBreakIterator.xml b/dependencies/php/classes/IntlBreakIterator.xml index 808c2c5748e012e5e70aa2f4e046761701d4b821..34977b178ec6a62cda1beabb96dc367b3481f516 100644 --- a/dependencies/php/classes/IntlBreakIterator.xml +++ b/dependencies/php/classes/IntlBreakIterator.xml @@ -105,145 +105,145 @@ <method name="createCharacterInstance" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=" Create break iterator for boundaries of combining character sequences "/> - <return type="ReturnType"/> + <return type="IntlBreakIterator"/> </docblock> - <parameter name=""locale"" optional="true" byreference="false" type="string"/> + <parameter name="locale" optional="true" byreference="false" type="string"/> </method> <method name="createCodePointInstance" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Create break iterator for boundaries of code points"/> - <return type="ReturnType"/> + <return type="IntlBreakIterator"/> </docblock> </method> <method name="createLineInstance" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=" Create break iterator for logically possible line breaks "/> - <return type="ReturnType"/> + <return type="IntlBreakIterator"/> </docblock> - <parameter name=""locale"" optional="true" byreference="false" type="string"/> + <parameter name="locale" optional="true" byreference="false" type="string"/> </method> <method name="createSentenceInstance" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Create break iterator for sentence breaks"/> - <return type="ReturnType"/> + <return type="IntlBreakIterator"/> </docblock> - <parameter name=""locale"" optional="true" byreference="false" type="string"/> + <parameter name="locale" optional="true" byreference="false" type="string"/> </method> <method name="createTitleInstance" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Create break iterator for title-casing breaks"/> - <return type="ReturnType"/> + <return type="IntlBreakIterator"/> </docblock> - <parameter name=""locale"" optional="true" byreference="false" type="string"/> + <parameter name="locale" optional="true" byreference="false" type="string"/> </method> <method name="createWordInstance" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Create break iterator for word breaks"/> - <return type="ReturnType"/> + <return type="IntlBreakIterator"/> </docblock> - <parameter name=""locale"" optional="true" byreference="false" type="string"/> + <parameter name="locale" optional="true" byreference="false" type="string"/> </method> <method name="current" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Get index of current position"/> - <return type="ReturnType"/> + <return type="int"/> </docblock> </method> <method name="first" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Set position to the first character in the text"/> - <return type="ReturnType"/> + <return type="int"/> </docblock> </method> <method name="following" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=" Advance the iterator to the first boundary following specified offset "/> - <return type="ReturnType"/> + <return type="int"/> </docblock> - <parameter name=""offset"" optional="false" byreference="false" type="string"/> + <parameter name="offset" optional="false" byreference="false" type="int"/> </method> <method name="getErrorCode" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Get last error code on the object">Object oriented style (method):</description> - <return type="ReturnType"/> + <return type="int"/> </docblock> </method> <method name="" abstract="false" static="false" final="false"> <docblock> <description compact="Get last error code on the object">Object oriented style (method):</description> - <return type="ReturnType"/> + <return type="int"/> </docblock> </method> <method name="getErrorMessage" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Get last error message on the object">Object oriented style (method):</description> - <return type="ReturnType"/> + <return type="string"/> </docblock> </method> <method name="" abstract="false" static="false" final="false"> <docblock> <description compact="Get last error message on the object">Object oriented style (method):</description> - <return type="ReturnType"/> + <return type="string"/> </docblock> </method> <method name="getLocale" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Get the locale associated with the object"/> - <return type="ReturnType"/> + <return type="string"/> </docblock> - <parameter name=""locale_type"" optional="false" byreference="false" type="string"/> + <parameter name="locale_type" optional="false" byreference="false" type="string"/> </method> <method name="getPartsIterator" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Create iterator for navigating fragments between boundaries"/> - <return type="ReturnType"/> + <return type="IntlPartsIterator"/> </docblock> - <parameter name=""key_type"" optional="true" byreference="false" type="string"/> + <parameter name="key_type" optional="true" byreference="false" type="int"/> </method> <method name="getText" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Get the text being scanned"/> - <return type="ReturnType"/> + <return type="string"/> </docblock> </method> <method name="isBoundary" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Tell whether an offset is a boundaryʼs offset"/> - <return type="ReturnType"/> + <return type="bool"/> </docblock> - <parameter name=""offset"" optional="false" byreference="false" type="string"/> + <parameter name="offset" optional="false" byreference="false" type="int"/> </method> <method name="last" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Set the iterator position to index beyond the last character"/> - <return type="ReturnType"/> + <return type="int"/> </docblock> </method> <method name="next" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Advance the iterator the next boundary"/> - <return type="ReturnType"/> + <return type="int"/> </docblock> - <parameter name=""offset"" optional="true" byreference="false" type="string"/> + <parameter name="offset" optional="true" byreference="false" type="int"/> </method> <method name="preceding" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Set the iterator position to the first boundary before an offset"/> - <return type="ReturnType"/> + <return type="int"/> </docblock> - <parameter name=""offset"" optional="false" byreference="false" type="string"/> + <parameter name="offset" optional="false" byreference="false" type="int"/> </method> <method name="previous" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Set the iterator position to the boundary immediately before the current"/> - <return type="ReturnType"/> + <return type="int"/> </docblock> </method> <method name="setText" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Set the text being scanned"/> - <return type="ReturnType"/> + <return type="bool"/> </docblock> - <parameter name=""text"" optional="false" byreference="false" type="string"/> + <parameter name="text" optional="false" byreference="false" type="string"/> </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/IntlCalendar.xml b/dependencies/php/classes/IntlCalendar.xml index 66043dbf289bed7d1f4ac1548c32e73d4615a1a6..7ca892484a97cf30def71fe9eaf73e2db792d9f7 100644 --- a/dependencies/php/classes/IntlCalendar.xml +++ b/dependencies/php/classes/IntlCalendar.xml @@ -444,7 +444,7 @@ </docblock> <parameter name="key" optional="false" byreference="false" type="string"/> <parameter name="locale" optional="false" byreference="false" type="string"/> - <parameter name="commonlyUsed" optional="false" byreference="false" type="object" class="boolean"/> + <parameter name="commonlyUsed" optional="false" byreference="false" type="object" class="bool"/> </method> <method name="" abstract="false" static="false" final="false"> <docblock> @@ -453,7 +453,7 @@ </docblock> <parameter name="key" optional="false" byreference="false" type="string"/> <parameter name="locale" optional="false" byreference="false" type="string"/> - <parameter name="commonlyUsed" optional="false" byreference="false" type="object" class="boolean"/> + <parameter name="commonlyUsed" optional="false" byreference="false" type="object" class="bool"/> </method> <method name="getLeastMaximum" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -768,17 +768,17 @@ <method name="setLenient" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Set whether date/time interpretation is to be lenient">Object oriented style</description> - <return type="ReturnType"/> + <return type="bool"/> </docblock> - <parameter name="isLenient" optional="false" byreference="false" type="string"/> + <parameter name="isLenient" optional="false" byreference="false" type="object" class="bool"/> </method> <method name="" abstract="false" static="false" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="bool"/> </docblock> <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> - <parameter name="isLenient" optional="false" byreference="false" type="string"/> + <parameter name="isLenient" optional="false" byreference="false" type="object" class="bool"/> </method> <method name="setMinimalDaysInFirstWeek" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/IntlCodePointBreakIterator.xml b/dependencies/php/classes/IntlCodePointBreakIterator.xml index eeff9183e5155146edc07504fb1eaf051b1b2612..03fbd933770ec4cf63886276ca8a4a169924bc41 100644 --- a/dependencies/php/classes/IntlCodePointBreakIterator.xml +++ b/dependencies/php/classes/IntlCodePointBreakIterator.xml @@ -99,7 +99,7 @@ <method name="getLastCodePoint" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Get last code point passed over after advancing or receding the iterator"/> - <return type="ReturnType"/> + <return type="int"/> </docblock> </method> <constructor name="__construct" abstract="false" static="false" final="false"> @@ -111,145 +111,145 @@ <method name="createCharacterInstance" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="IntlBreakIterator"/> </docblock> - <parameter name=""locale"" optional="true" byreference="false" type="string"/> + <parameter name="locale" optional="true" byreference="false" type="string"/> </method> <method name="createCodePointInstance" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="IntlBreakIterator"/> </docblock> </method> <method name="createLineInstance" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="IntlBreakIterator"/> </docblock> - <parameter name=""locale"" optional="true" byreference="false" type="string"/> + <parameter name="locale" optional="true" byreference="false" type="string"/> </method> <method name="createSentenceInstance" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="IntlBreakIterator"/> </docblock> - <parameter name=""locale"" optional="true" byreference="false" type="string"/> + <parameter name="locale" optional="true" byreference="false" type="string"/> </method> <method name="createTitleInstance" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="IntlBreakIterator"/> </docblock> - <parameter name=""locale"" optional="true" byreference="false" type="string"/> + <parameter name="locale" optional="true" byreference="false" type="string"/> </method> <method name="createWordInstance" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="IntlBreakIterator"/> </docblock> - <parameter name=""locale"" optional="true" byreference="false" type="string"/> + <parameter name="locale" optional="true" byreference="false" type="string"/> </method> <method name="current" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="int"/> </docblock> </method> <method name="first" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="int"/> </docblock> </method> <method name="following" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="int"/> </docblock> - <parameter name=""offset"" optional="false" byreference="false" type="string"/> + <parameter name="offset" optional="false" byreference="false" type="int"/> </method> <method name="getErrorCode" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="int"/> </docblock> </method> <method name="" abstract="false" static="false" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="int"/> </docblock> </method> <method name="getErrorMessage" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="string"/> </docblock> </method> <method name="" abstract="false" static="false" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="string"/> </docblock> </method> <method name="getLocale" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="string"/> </docblock> - <parameter name=""locale_type"" optional="false" byreference="false" type="string"/> + <parameter name="locale_type" optional="false" byreference="false" type="string"/> </method> <method name="getPartsIterator" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="IntlPartsIterator"/> </docblock> - <parameter name=""key_type"" optional="true" byreference="false" type="string"/> + <parameter name="key_type" optional="true" byreference="false" type="int"/> </method> <method name="getText" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="string"/> </docblock> </method> <method name="isBoundary" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="bool"/> </docblock> - <parameter name=""offset"" optional="false" byreference="false" type="string"/> + <parameter name="offset" optional="false" byreference="false" type="int"/> </method> <method name="last" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="int"/> </docblock> </method> <method name="next" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="int"/> </docblock> - <parameter name=""offset"" optional="true" byreference="false" type="string"/> + <parameter name="offset" optional="true" byreference="false" type="int"/> </method> <method name="preceding" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="int"/> </docblock> - <parameter name=""offset"" optional="false" byreference="false" type="string"/> + <parameter name="offset" optional="false" byreference="false" type="int"/> </method> <method name="previous" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="int"/> </docblock> </method> <method name="setText" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="bool"/> </docblock> - <parameter name=""text"" optional="false" byreference="false" type="string"/> + <parameter name="text" optional="false" byreference="false" type="string"/> </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/IntlDateFormatter.xml b/dependencies/php/classes/IntlDateFormatter.xml index 601d53c2eb64afea529f2d5e24330f6ab8f55ee8..c881e1883c3f1685aa0114ee5cdaac8bd969ea5d 100644 --- a/dependencies/php/classes/IntlDateFormatter.xml +++ b/dependencies/php/classes/IntlDateFormatter.xml @@ -60,7 +60,7 @@ </method> <method name="getErrorMessage" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Get the error text from the last operation.">Object oriented style</description> + <description compact="Get the error text from the last operation">Object oriented style</description> <return type="string"/> </docblock> </method> @@ -154,7 +154,7 @@ <method name="setTimeZone" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Sets formatterʼs timezone">Object oriented style</description> - <return type="boolean"/> + <return type="bool"/> </docblock> <parameter name="zone" optional="false" byreference="false" type="object" class="mixed"/> </method> diff --git a/dependencies/php/classes/IntlGregorianCalendar.xml b/dependencies/php/classes/IntlGregorianCalendar.xml new file mode 100644 index 0000000000000000000000000000000000000000..e04b979e99e27c851f8ea92b1a4c6c434449ec8f --- /dev/null +++ b/dependencies/php/classes/IntlGregorianCalendar.xml @@ -0,0 +1,900 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="IntlGregorianCalendar" namespace="" name="IntlGregorianCalendar"> + <extends name="IntlCalendar" full="IntlCalendar"/> + <constant name="FIELD_ERA" value="0"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="FIELD_YEAR" value="1"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="FIELD_MONTH" value="2"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="FIELD_WEEK_OF_YEAR" value="3"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="FIELD_WEEK_OF_MONTH" value="4"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="FIELD_DATE" value="5"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="FIELD_DAY_OF_YEAR" value="6"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="FIELD_DAY_OF_WEEK" value="7"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="FIELD_DAY_OF_WEEK_IN_MONTH" value="8"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="FIELD_AM_PM" value="9"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="FIELD_HOUR" value="10"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="FIELD_HOUR_OF_DAY" value="11"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="FIELD_MINUTE" value="12"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="FIELD_SECOND" value="13"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="FIELD_MILLISECOND" value="14"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="FIELD_ZONE_OFFSET" value="15"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="FIELD_DST_OFFSET" value="16"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="FIELD_YEAR_WOY" value="17"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="FIELD_DOW_LOCAL" value="18"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="FIELD_EXTENDED_YEAR" value="19"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="FIELD_JULIAN_DAY" value="20"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="FIELD_MILLISECONDS_IN_DAY" value="21"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="FIELD_IS_LEAP_MONTH" value="22"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="FIELD_FIELD_COUNT " value="23"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="FIELD_DAY_OF_MONTH" value="5"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="DOW_SUNDAY" value="1"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="DOW_MONDAY" value="2"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="DOW_TUESDAY" value="3"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="DOW_WEDNESDAY" value="4"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="DOW_THURSDAY" value="5"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="DOW_FRIDAY" value="6"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="DOW_SATURDAY" value="7"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="DOW_TYPE_WEEKDAY" value="0"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="DOW_TYPE_WEEKEND" value="1"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="DOW_TYPE_WEEKEND_OFFSET" value="2"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="DOW_TYPE_WEEKEND_CEASE" value="3"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="WALLTIME_FIRST" value="1"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="WALLTIME_LAST" value="0"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="WALLTIME_NEXT_VALID" value="2"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Create the Gregorian Calendar class"/> + <return type="void"/> + </docblock> + <parameter name="tz" optional="true" byreference="false" type="object" class="IntlTimeZone"/> + <parameter name="locale" optional="true" byreference="false" type="string"/> + </constructor> + <method name="getGregorianChange" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get the Gregorian Calendar change date"/> + <return type="float"/> + </docblock> + </method> + <method name="isLeapYear" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Determine if the given year is a leap year"/> + <return type="bool"/> + </docblock> + <parameter name="year" optional="false" byreference="false" type="int"/> + </method> + <method name="setGregorianChange" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Set the Gregorian Calendar the change date"/> + <return type="bool"/> + </docblock> + <parameter name="date" optional="false" byreference="false" type="object" class="float"/> + </method> + <method name="add" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="field" optional="false" byreference="false" type="int"/> + <parameter name="amount" optional="false" byreference="false" type="int"/> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + <parameter name="field" optional="false" byreference="false" type="int"/> + <parameter name="amount" optional="false" byreference="false" type="int"/> + </method> + <method name="after" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="other" optional="false" byreference="false" type="object" class="IntlCalendar"/> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + <parameter name="other" optional="false" byreference="false" type="object" class="IntlCalendar"/> + </method> + <method name="before" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="other" optional="false" byreference="false" type="object" class="IntlCalendar"/> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + <parameter name="other" optional="false" byreference="false" type="object" class="IntlCalendar"/> + </method> + <method name="clear" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="field" optional="true" byreference="false" type="int"/> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + <parameter name="field" optional="true" byreference="false" type="int"/> + </method> + <constructor name="__construct" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </constructor> + <method name="createInstance" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="IntlCalendar"/> + </docblock> + <parameter name="timeZone" optional="true" byreference="false" type="object" class="mixed"/> + <parameter name="locale" optional="true" byreference="false" type="string"/> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="IntlCalendar"/> + </docblock> + <parameter name="timeZone" optional="true" byreference="false" type="object" class="mixed"/> + <parameter name="locale" optional="true" byreference="false" type="string"/> + </method> + <method name="equals" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="other" optional="false" byreference="false" type="object" class="IntlCalendar"/> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + <parameter name="other" optional="false" byreference="false" type="object" class="IntlCalendar"/> + </method> + <method name="fieldDifference" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + <parameter name="when" optional="false" byreference="false" type="object" class="float"/> + <parameter name="field" optional="false" byreference="false" type="int"/> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + <parameter name="when" optional="false" byreference="false" type="object" class="float"/> + <parameter name="field" optional="false" byreference="false" type="int"/> + </method> + <method name="fromDateTime" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="IntlCalendar"/> + </docblock> + <parameter name="dateTime" optional="false" byreference="false" type="object" class="mixed"/> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="IntlCalendar"/> + </docblock> + <parameter name="dateTime" optional="false" byreference="false" type="object" class="mixed"/> + </method> + <method name="get" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + <parameter name="field" optional="false" byreference="false" type="int"/> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + <parameter name="field" optional="false" byreference="false" type="int"/> + </method> + <method name="getActualMaximum" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + <parameter name="field" optional="false" byreference="false" type="int"/> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + <parameter name="field" optional="false" byreference="false" type="int"/> + </method> + <method name="getActualMinimum" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + <parameter name="field" optional="false" byreference="false" type="int"/> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + <parameter name="field" optional="false" byreference="false" type="int"/> + </method> + <method name="getAvailableLocales" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + </method> + <method name="getDayOfWeekType" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + <parameter name="dayOfWeek" optional="false" byreference="false" type="int"/> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + <parameter name="dayOfWeek" optional="false" byreference="false" type="int"/> + </method> + <method name="getErrorCode" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + </method> + <method name="getErrorMessage" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getFirstDayOfWeek" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + </method> + <method name="getGreatestMinimum" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + <parameter name="field" optional="false" byreference="false" type="int"/> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + <parameter name="field" optional="false" byreference="false" type="int"/> + </method> + <method name="getKeywordValuesForLocale" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="Iterator"/> + </docblock> + <parameter name="key" optional="false" byreference="false" type="string"/> + <parameter name="locale" optional="false" byreference="false" type="string"/> + <parameter name="commonlyUsed" optional="false" byreference="false" type="object" class="bool"/> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="Iterator"/> + </docblock> + <parameter name="key" optional="false" byreference="false" type="string"/> + <parameter name="locale" optional="false" byreference="false" type="string"/> + <parameter name="commonlyUsed" optional="false" byreference="false" type="object" class="bool"/> + </method> + <method name="getLeastMaximum" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + <parameter name="field" optional="false" byreference="false" type="int"/> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + <parameter name="field" optional="false" byreference="false" type="int"/> + </method> + <method name="getLocale" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + <parameter name="localeType" optional="false" byreference="false" type="int"/> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + <parameter name="localeType" optional="false" byreference="false" type="int"/> + </method> + <method name="getMaximum" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + <parameter name="field" optional="false" byreference="false" type="int"/> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + <parameter name="field" optional="false" byreference="false" type="int"/> + </method> + <method name="getMinimalDaysInFirstWeek" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + </method> + <method name="getMinimum" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + <parameter name="field" optional="false" byreference="false" type="int"/> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + <parameter name="field" optional="false" byreference="false" type="int"/> + </method> + <method name="getNow" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="float"/> + </docblock> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="float"/> + </docblock> + </method> + <method name="getRepeatedWallTimeOption" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + </method> + <method name="getSkippedWallTimeOption" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + </method> + <method name="getTime" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="float"/> + </docblock> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="float"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + </method> + <method name="getTimeZone" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="IntlTimeZone"/> + </docblock> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="IntlTimeZone"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + </method> + <method name="getType" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + </method> + <method name="getWeekendTransition" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + <parameter name="dayOfWeek" optional="false" byreference="false" type="string"/> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + <parameter name="dayOfWeek" optional="false" byreference="false" type="string"/> + </method> + <method name="inDaylightTime" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + </method> + <method name="isEquivalentTo" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="other" optional="false" byreference="false" type="object" class="IntlCalendar"/> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + <parameter name="other" optional="false" byreference="false" type="object" class="IntlCalendar"/> + </method> + <method name="isLenient" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + </method> + <method name="isSet" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="field" optional="false" byreference="false" type="int"/> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + <parameter name="field" optional="false" byreference="false" type="int"/> + </method> + <method name="isWeekend" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="date" optional="true" byreference="false" type="object" class="float"/> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + <parameter name="date" optional="true" byreference="false" type="object" class="float"/> + </method> + <method name="roll" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="field" optional="false" byreference="false" type="int"/> + <parameter name="amountOrUpOrDown" optional="false" byreference="false" type="object" class="mixed"/> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + <parameter name="field" optional="false" byreference="false" type="int"/> + <parameter name="amountOrUpOrDown" optional="false" byreference="false" type="object" class="mixed"/> + </method> + <method name="set" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="field" optional="false" byreference="false" type="int"/> + <parameter name="value" optional="false" byreference="false" type="int"/> + </method> + <method name="set" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="year" optional="false" byreference="false" type="int"/> + <parameter name="month" optional="false" byreference="false" type="int"/> + <parameter name="dayOfMonth" optional="true" byreference="false" type="int"/> + <parameter name="hour" optional="true" byreference="false" type="int"/> + <parameter name="minute" optional="true" byreference="false" type="int"/> + <parameter name="second" optional="true" byreference="false" type="int"/> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + <parameter name="field" optional="false" byreference="false" type="int"/> + <parameter name="value" optional="false" byreference="false" type="int"/> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + <parameter name="year" optional="false" byreference="false" type="int"/> + <parameter name="month" optional="false" byreference="false" type="int"/> + <parameter name="dayOfMonth" optional="true" byreference="false" type="int"/> + <parameter name="hour" optional="true" byreference="false" type="int"/> + <parameter name="minute" optional="true" byreference="false" type="int"/> + <parameter name="second" optional="true" byreference="false" type="int"/> + </method> + <method name="setFirstDayOfWeek" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="dayOfWeek" optional="false" byreference="false" type="int"/> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + <parameter name="dayOfWeek" optional="false" byreference="false" type="int"/> + </method> + <method name="setLenient" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="isLenient" optional="false" byreference="false" type="object" class="bool"/> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + <parameter name="isLenient" optional="false" byreference="false" type="object" class="bool"/> + </method> + <method name="setMinimalDaysInFirstWeek" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="minimalDays" optional="false" byreference="false" type="int"/> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + <parameter name="minimalDays" optional="false" byreference="false" type="int"/> + </method> + <method name="setRepeatedWallTimeOption" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="wallTimeOption" optional="false" byreference="false" type="int"/> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + <parameter name="wallTimeOption" optional="false" byreference="false" type="int"/> + </method> + <method name="setSkippedWallTimeOption" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="wallTimeOption" optional="false" byreference="false" type="int"/> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + <parameter name="wallTimeOption" optional="false" byreference="false" type="int"/> + </method> + <method name="setTime" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="date" optional="false" byreference="false" type="object" class="float"/> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + <parameter name="date" optional="false" byreference="false" type="object" class="float"/> + </method> + <method name="setTimeZone" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="timeZone" optional="false" byreference="false" type="object" class="mixed"/> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + <parameter name="timeZone" optional="false" byreference="false" type="object" class="mixed"/> + </method> + <method name="toDateTime" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="DateTime"/> + </docblock> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="DateTime"/> + </docblock> + <parameter name="cal" optional="false" byreference="false" type="object" class="IntlCalendar"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/IntlIterator.xml b/dependencies/php/classes/IntlIterator.xml index 573cf055647521d7ee06b2ba7229b4f5a88604e3..bb63759bef78d66f77f4d199d8295af246d10d55 100644 --- a/dependencies/php/classes/IntlIterator.xml +++ b/dependencies/php/classes/IntlIterator.xml @@ -4,31 +4,31 @@ <method name="current" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Get the current element"/> - <return type="ReturnType"/> + <return type="mixed"/> </docblock> </method> <method name="key" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Get the current key"/> - <return type="ReturnType"/> + <return type="string"/> </docblock> </method> <method name="next" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Move forward to the next element"/> - <return type="ReturnType"/> + <return type="void"/> </docblock> </method> <method name="rewind" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Rewind the iterator to the first element"/> - <return type="ReturnType"/> + <return type="void"/> </docblock> </method> <method name="valid" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Check if current position is valid"/> - <return type="ReturnType"/> + <return type="bool"/> </docblock> </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/IntlPartsIterator.xml b/dependencies/php/classes/IntlPartsIterator.xml index 86f9b7015977ddd4295eb35d97b4142c469ce0a1..1531a67d8e5c85c756cdc3921333ec470fd44c08 100644 --- a/dependencies/php/classes/IntlPartsIterator.xml +++ b/dependencies/php/classes/IntlPartsIterator.xml @@ -19,37 +19,37 @@ <method name="getBreakIterator" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Get IntlBreakIterator backing this parts iterator"/> - <return type="ReturnType"/> + <return type="IntlBreakIterator"/> </docblock> </method> <method name="current" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="mixed"/> </docblock> </method> <method name="key" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="string"/> </docblock> </method> <method name="next" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="void"/> </docblock> </method> <method name="rewind" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="void"/> </docblock> </method> <method name="valid" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="bool"/> </docblock> </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/IntlRuleBasedBreakIterator.xml b/dependencies/php/classes/IntlRuleBasedBreakIterator.xml index 9b264d812e8b118ccf6b23cd722928eef403450d..46f60d6fb4a0de5e9d20a5db078cff2fa28c65a1 100644 --- a/dependencies/php/classes/IntlRuleBasedBreakIterator.xml +++ b/dependencies/php/classes/IntlRuleBasedBreakIterator.xml @@ -107,25 +107,25 @@ <method name="getBinaryRules" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Get the binary form of compiled rules"/> - <return type="ReturnType"/> + <return type="string"/> </docblock> </method> <method name="getRules" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Get the rule set used to create this object"/> - <return type="ReturnType"/> + <return type="string"/> </docblock> </method> <method name="getRuleStatus" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Get the largest status value from the break rules that determined the current break position"/> - <return type="ReturnType"/> + <return type="int"/> </docblock> </method> <method name="getRuleStatusVec" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Get the status values from the break rules that determined the current break position"/> - <return type="ReturnType"/> + <return type="array"/> </docblock> </method> <constructor name="__construct" abstract="false" static="false" final="false"> @@ -137,145 +137,145 @@ <method name="createCharacterInstance" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="IntlBreakIterator"/> </docblock> - <parameter name=""locale"" optional="true" byreference="false" type="string"/> + <parameter name="locale" optional="true" byreference="false" type="string"/> </method> <method name="createCodePointInstance" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="IntlBreakIterator"/> </docblock> </method> <method name="createLineInstance" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="IntlBreakIterator"/> </docblock> - <parameter name=""locale"" optional="true" byreference="false" type="string"/> + <parameter name="locale" optional="true" byreference="false" type="string"/> </method> <method name="createSentenceInstance" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="IntlBreakIterator"/> </docblock> - <parameter name=""locale"" optional="true" byreference="false" type="string"/> + <parameter name="locale" optional="true" byreference="false" type="string"/> </method> <method name="createTitleInstance" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="IntlBreakIterator"/> </docblock> - <parameter name=""locale"" optional="true" byreference="false" type="string"/> + <parameter name="locale" optional="true" byreference="false" type="string"/> </method> <method name="createWordInstance" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="IntlBreakIterator"/> </docblock> - <parameter name=""locale"" optional="true" byreference="false" type="string"/> + <parameter name="locale" optional="true" byreference="false" type="string"/> </method> <method name="current" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="int"/> </docblock> </method> <method name="first" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="int"/> </docblock> </method> <method name="following" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="int"/> </docblock> - <parameter name=""offset"" optional="false" byreference="false" type="string"/> + <parameter name="offset" optional="false" byreference="false" type="int"/> </method> <method name="getErrorCode" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="int"/> </docblock> </method> <method name="" abstract="false" static="false" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="int"/> </docblock> </method> <method name="getErrorMessage" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="string"/> </docblock> </method> <method name="" abstract="false" static="false" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="string"/> </docblock> </method> <method name="getLocale" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="string"/> </docblock> - <parameter name=""locale_type"" optional="false" byreference="false" type="string"/> + <parameter name="locale_type" optional="false" byreference="false" type="string"/> </method> <method name="getPartsIterator" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="IntlPartsIterator"/> </docblock> - <parameter name=""key_type"" optional="true" byreference="false" type="string"/> + <parameter name="key_type" optional="true" byreference="false" type="int"/> </method> <method name="getText" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="string"/> </docblock> </method> <method name="isBoundary" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="bool"/> </docblock> - <parameter name=""offset"" optional="false" byreference="false" type="string"/> + <parameter name="offset" optional="false" byreference="false" type="int"/> </method> <method name="last" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="int"/> </docblock> </method> <method name="next" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="int"/> </docblock> - <parameter name=""offset"" optional="true" byreference="false" type="string"/> + <parameter name="offset" optional="true" byreference="false" type="int"/> </method> <method name="preceding" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="int"/> </docblock> - <parameter name=""offset"" optional="false" byreference="false" type="string"/> + <parameter name="offset" optional="false" byreference="false" type="int"/> </method> <method name="previous" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="int"/> </docblock> </method> <method name="setText" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="ReturnType"/> + <return type="bool"/> </docblock> - <parameter name=""text"" optional="false" byreference="false" type="string"/> + <parameter name="text" optional="false" byreference="false" type="string"/> </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/IntlTimeZone.xml b/dependencies/php/classes/IntlTimeZone.xml index f1e093cea0eb7d4ef722f2764b06cca4d43ca183..1345e277a63669b6977d8ea7b2e423734658cf18 100644 --- a/dependencies/php/classes/IntlTimeZone.xml +++ b/dependencies/php/classes/IntlTimeZone.xml @@ -13,7 +13,7 @@ <method name="countEquivalentIDs" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Get the number of IDs in the equivalency group that includes the given ID"/> - <return type="integer"/> + <return type="int"/> </docblock> <parameter name="zoneId" optional="false" byreference="false" type="string"/> </method> @@ -37,6 +37,15 @@ </docblock> <parameter name="zoneId" optional="false" byreference="false" type="string"/> </method> + <method name="createTimeZoneIDEnumeration" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get an enumeration over system time zone IDs with the given filter conditions"/> + <return type="IntlIterator"/> + </docblock> + <parameter name="zoneType" optional="false" byreference="false" type="int"/> + <parameter name="region" optional="true" byreference="false" type="string"/> + <parameter name="rawOffset" optional="true" byreference="false" type="int"/> + </method> <method name="fromDateTimeZone" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Create a timezone object from DateTimeZone"/> @@ -58,13 +67,13 @@ <return type="string"/> </docblock> <parameter name="isDaylight" optional="true" byreference="false" type="object" class="bool"/> - <parameter name="style" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="style" optional="true" byreference="false" type="int"/> <parameter name="locale" optional="true" byreference="false" type="string"/> </method> <method name="getDSTSavings" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Get the amount of time to be added to local standard time to get local wall clock time"/> - <return type="integer"/> + <return type="int"/> </docblock> </method> <method name="getEquivalentID" abstract="false" static="false" visibility="public" final="false"> @@ -73,12 +82,12 @@ <return type="string"/> </docblock> <parameter name="zoneId" optional="false" byreference="false" type="string"/> - <parameter name="index" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="index" optional="false" byreference="false" type="int"/> </method> <method name="getErrorCode" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Get last error code on the object">Object oriented style (method):</description> - <return type="integer"/> + <return type="int"/> </docblock> </method> <method name="getErrorMessage" abstract="false" static="false" visibility="public" final="false"> @@ -99,28 +108,56 @@ <return type="string"/> </docblock> </method> + <method name="getIDForWindowsID" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Translate a Windows timezone into a system timezone"/> + <return type="string"/> + </docblock> + <parameter name="timezone" optional="false" byreference="false" type="string"/> + <parameter name="region" optional="true" byreference="false" type="string"/> + </method> <method name="getOffset" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Get the time zone raw and GMT offset for the given moment in time"/> - <return type="integer"/> + <return type="int"/> </docblock> <parameter name="date" optional="false" byreference="false" type="object" class="float"/> <parameter name="local" optional="false" byreference="false" type="object" class="bool"/> - <parameter name="rawOffset" optional="false" byreference="false" type="object" class="integer"/> - <parameter name="dstOffset" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="rawOffset" optional="false" byreference="false" type="int"/> + <parameter name="dstOffset" optional="false" byreference="false" type="int"/> </method> <method name="getRawOffset" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Get the raw GMT offset (before taking daylight savings time into account"/> - <return type="integer"/> + <return type="int"/> </docblock> </method> + <method name="getRegion" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get the region code associated with the given system time zone ID"/> + <return type="string"/> + </docblock> + <parameter name="zoneId" optional="false" byreference="false" type="string"/> + </method> <method name="getTZDataVersion" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Get the timezone data version currently used by ICU"/> <return type="string"/> </docblock> </method> + <method name="getUnknown" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get the "unknown" time zone"/> + <return type="IntlTimeZone"/> + </docblock> + </method> + <method name="getWindowsID" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Translate a system timezone into a Windows timezone"/> + <return type="string"/> + </docblock> + <parameter name="timezone" optional="false" byreference="false" type="string"/> + </method> <method name="hasSameRules" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Check if this zone has the same rules and offset as another zone"/> diff --git a/dependencies/php/classes/JsonException.xml b/dependencies/php/classes/JsonException.xml new file mode 100644 index 0000000000000000000000000000000000000000..fdf639b8127732997cf1f0c2ab03d37a849b55ad --- /dev/null +++ b/dependencies/php/classes/JsonException.xml @@ -0,0 +1,86 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="JsonException" namespace="" name="JsonException"> + <extends name="Exception" full="Exception"/> + <member name="message" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The exception message"/> + <var type="string"/> + </docblock> + </member> + <member name="code" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The exception code"/> + <var type="int"/> + </docblock> + </member> + <member name="file" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The filename where the exception was created"/> + <var type="string"/> + </docblock> + </member> + <member name="line" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The line where the exception was created"/> + <var type="int"/> + </docblock> + </member> + <method name="getMessage" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getPrevious" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="Throwable"/> + </docblock> + </method> + <method name="getCode" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="mixed"/> + </docblock> + </method> + <method name="getFile" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getLine" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + </method> + <method name="getTrace" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + </method> + <method name="getTraceAsString" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="__toString" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="__clone" abstract="false" static="false" final="true"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/KTaglib_Tag.xml b/dependencies/php/classes/KTaglib_Tag.xml index c65a7853115d7109a06b8f6cef06a800e258f91b..06d9340cfc8320a85dbb4fad2b2efd7e3469fe1c 100644 --- a/dependencies/php/classes/KTaglib_Tag.xml +++ b/dependencies/php/classes/KTaglib_Tag.xml @@ -2,7 +2,7 @@ <class xmlns="http://xml.phpdox.net/src" full="KTaglib_Tag" namespace="" name="KTaglib_Tag"> <method name="getAlbum" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the title string from a ID3 tag"/> + <description compact="Returns the album string from a ID3 tag"/> <return type="string"/> </docblock> </method> diff --git a/dependencies/php/classes/Locale.xml b/dependencies/php/classes/Locale.xml index d04c162f94914e2d20678a40842e4915697bc009..3f171ff9195e3acad193e66f7e5520eb907ca24e 100644 --- a/dependencies/php/classes/Locale.xml +++ b/dependencies/php/classes/Locale.xml @@ -123,14 +123,14 @@ </method> <method name="parseLocale" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns a key-value array of locale ID subtag elements.">Object oriented style</description> + <description compact="Returns a key-value array of locale ID subtag elements">Object oriented style</description> <return type="array"/> </docblock> <parameter name="locale" optional="false" byreference="false" type="string"/> </method> <method name="setDefault" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="sets the default runtime locale">Object oriented style</description> + <description compact="Sets the default runtime locale">Object oriented style</description> <return type="bool"/> </docblock> <parameter name="locale" optional="false" byreference="false" type="string"/> diff --git a/dependencies/php/classes/LuaClosure.xml b/dependencies/php/classes/LuaClosure.xml index 1066f1a747e2a440c6a4018d2dc60264c8b8df31..244ff882ee92a4a4cee135114d7417bcfed8bdac 100644 --- a/dependencies/php/classes/LuaClosure.xml +++ b/dependencies/php/classes/LuaClosure.xml @@ -2,10 +2,9 @@ <class xmlns="http://xml.phpdox.net/src" full="LuaClosure" namespace="" name="LuaClosure"> <method name="__invoke" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="invoke luaclosure"/> + <description compact="Invoke luaclosure"/> <return type="void"/> </docblock> - <parameter name="arg" optional="false" byreference="false" type="object" class="mixed"/> <parameter name="..." optional="true" byreference="false" type="object" class="mixed"/> </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/Memcached.xml b/dependencies/php/classes/Memcached.xml index 7d2c7614195dec821867420005d7fbe86c0d4771..71d12bffe910b40b394a19879f3926b191b8ec90 100644 --- a/dependencies/php/classes/Memcached.xml +++ b/dependencies/php/classes/Memcached.xml @@ -156,12 +156,12 @@ </method> <method name="get" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Retrieve an item">Memcached::get returns the item that was previously stored under the key. If the item is found and cas_token variable is provided, it will contain the CAS token value for the item. See Memcached::cas for how to use CAS tokens. Read-through caching callback may be specified via cache_cb parameter.</description> + <description compact="Retrieve an item">Memcached::get returns the item that was previously stored under the key. If the item is found and the flags is given Memcached::GET_EXTENDED, it will also return the CAS token value for the item. See Memcached::cas for how to use CAS tokens. Read-through caching callback may be specified via cache_cb parameter.</description> <return type="mixed"/> </docblock> <parameter name="key" optional="false" byreference="false" type="string"/> <parameter name="cache_cb" optional="true" byreference="false" type="object" class="callable"/> - <parameter name="cas_token" optional="true" byreference="false" type="object" class="float"/> + <parameter name="$flags" optional="true" byreference="false" type="int"/> </method> <method name="getAllKeys" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -177,7 +177,7 @@ <parameter name="server_key" optional="false" byreference="false" type="string"/> <parameter name="key" optional="false" byreference="false" type="string"/> <parameter name="cache_cb" optional="true" byreference="false" type="object" class="callable"/> - <parameter name="cas_token" optional="true" byreference="false" type="object" class="float"/> + <parameter name="flags" optional="true" byreference="false" type="int"/> </method> <method name="getDelayed" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -200,11 +200,10 @@ </method> <method name="getMulti" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Retrieve multiple items">Memcached::getMulti is similar to Memcached::get, but instead of a single key item, it retrieves multiple items the keys of which are specified in the keys array. If cas_tokens variable is provided, it is filled with the CAS token values for the found items. Unlike Memcached::get it is not possible to specify a read-through cache callback for Memcached::getMulti, because the memcache protocol does not provide information on which keys were not found in the multi-key request.</description> + <description compact="Retrieve multiple items">Memcached::getMulti is similar to Memcached::get, but instead of a single key item, it retrieves multiple items the keys of which are specified in the keys array. Before v3.0 a second argument cas_tokens was in use. It was filled with the CAS token values for the found items. The cas_tokens parameter was removed in v3.0 of the extension. It was replaced with a new flag Memcached::GET_EXTENDED that needs is to be used as the value for flags.</description> <return type="mixed"/> </docblock> <parameter name="keys" optional="false" byreference="false" type="object" class="array"/> - <parameter name="cas_tokens" optional="true" byreference="false" type="object" class="array"/> <parameter name="flags" optional="true" byreference="false" type="int"/> </method> <method name="getMultiByKey" abstract="false" static="false" visibility="public" final="false"> @@ -214,7 +213,6 @@ </docblock> <parameter name="server_key" optional="false" byreference="false" type="string"/> <parameter name="keys" optional="false" byreference="false" type="object" class="array"/> - <parameter name="cas_tokens" optional="true" byreference="false" type="string"/> <parameter name="flags" optional="true" byreference="false" type="int"/> </method> <method name="getOption" abstract="false" static="false" visibility="public" final="false"> diff --git a/dependencies/php/classes/MessageFormatter.xml b/dependencies/php/classes/MessageFormatter.xml index b8008da0e125a656a931b69654f3f0cad013b3dd..440f16ee8e1a341a50c77642e0a64c2e04eacbb0 100644 --- a/dependencies/php/classes/MessageFormatter.xml +++ b/dependencies/php/classes/MessageFormatter.xml @@ -46,7 +46,7 @@ </method> <method name="getLocale" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Get the locale for which the formatter was created.">Object oriented style</description> + <description compact="Get the locale for which the formatter was created">Object oriented style</description> <return type="string"/> </docblock> </method> diff --git a/dependencies/php/classes/Mongo.xml b/dependencies/php/classes/Mongo.xml index 06f75421def629a4389ae3bf0528d6d90326ac98..ff8431e24da0dc2d70107295be717b52606c2a2b 100644 --- a/dependencies/php/classes/Mongo.xml +++ b/dependencies/php/classes/Mongo.xml @@ -27,13 +27,13 @@ </method> <method name="poolDebug" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns information about all connection pools."/> + <description compact="Returns information about all connection pools"/> <return type="array"/> </docblock> </method> <method name="setPoolSize" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Set the size for future connection pools."/> + <description compact="Set the size for future connection pools"/> <return type="bool"/> </docblock> <parameter name="size" optional="false" byreference="false" type="int"/> diff --git a/dependencies/php/classes/MongoBinData.xml b/dependencies/php/classes/MongoBinData.xml index 33aeeb1065fb9eee7daff5c6a531de7c439a8167..fc976b8c0f92c10b6586a6fefe8e2ced631c3a08 100644 --- a/dependencies/php/classes/MongoBinData.xml +++ b/dependencies/php/classes/MongoBinData.xml @@ -49,7 +49,7 @@ </member> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Creates a new binary data object.">Creates a new binary data object.</description> + <description compact="Creates a new binary data object">Creates a new binary data object.</description> <return type="void"/> </docblock> <parameter name="data" optional="false" byreference="false" type="string"/> @@ -57,7 +57,7 @@ </constructor> <method name="__toString" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="The string representation of this binary data object."/> + <description compact="The string representation of this binary data object"/> <return type="string"/> </docblock> </method> diff --git a/dependencies/php/classes/MongoClient.xml b/dependencies/php/classes/MongoClient.xml index 9eda4f64a2fa30256e87bf7a0ac2ff0855547e31..f73ca060e8635ad2b8b5b45862c82b28982546be 100644 --- a/dependencies/php/classes/MongoClient.xml +++ b/dependencies/php/classes/MongoClient.xml @@ -136,7 +136,7 @@ </method> <method name="listDBs" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Lists all of the databases available."/> + <description compact="Lists all of the databases available"/> <return type="array"/> </docblock> </method> diff --git a/dependencies/php/classes/MongoCollection.xml b/dependencies/php/classes/MongoCollection.xml index 3bba73430aca6310c3c64df36285770e4c872e22..e0e96fd1383711fc79c778197d1de32ffbb7b21c 100644 --- a/dependencies/php/classes/MongoCollection.xml +++ b/dependencies/php/classes/MongoCollection.xml @@ -80,7 +80,7 @@ </method> <method name="createIndex" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Creates an index on the specified field(s) if it does not already exist. ">Creates an index on the specified field(s) if it does not already exist. Fields may be indexed with a direction (e.g. ascending or descending) or a special type (e.g. text, geospatial, hashed).</description> + <description compact=" Creates an index on the specified field(s) if it does not already exist ">Creates an index on the specified field(s) if it does not already exist. Fields may be indexed with a direction (e.g. ascending or descending) or a special type (e.g. text, geospatial, hashed).</description> <return type="bool"/> </docblock> <parameter name="keys" optional="false" byreference="false" type="object" class="array"/> @@ -101,7 +101,7 @@ </method> <method name="distinct" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Retrieve a list of distinct values for the given key across a collection."/> + <description compact="Retrieve a list of distinct values for the given key across a collection"/> <return type="array"/> </docblock> <parameter name="key" optional="false" byreference="false" type="string"/> @@ -115,7 +115,7 @@ </method> <method name="ensureIndex" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Creates an index on the specified field(s) if it does not already exist. ">This method is deprecated since version 1.5.0. Please use MongoCollection::createIndex instead.</description> + <description compact=" Creates an index on the specified field(s) if it does not already exist ">This method is deprecated since version 1.5.0. Please use MongoCollection::createIndex instead.</description> <return type="bool"/> </docblock> <parameter name="key|keys" optional="false" byreference="false" type="object" class="string|array"/> diff --git a/dependencies/php/classes/MongoCommandCursor.xml b/dependencies/php/classes/MongoCommandCursor.xml index 979f35aa02169989133b9e8c2d081a492b6e716f..6611c6a882c02f00cca51df45e8d1c2a66c9aa82 100644 --- a/dependencies/php/classes/MongoCommandCursor.xml +++ b/dependencies/php/classes/MongoCommandCursor.xml @@ -3,7 +3,7 @@ <implements name="MongoCursorInterface" full="MongoCursorInterface"/> <method name="batchSize" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Limits the number of elements returned in one batch."/> + <description compact="Limits the number of elements returned in one batch"/> <return type="MongoCommandCursor"/> </docblock> <parameter name="batchSize" optional="false" byreference="false" type="int"/> @@ -85,7 +85,7 @@ </method> <method name="valid" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Checks if the cursor is reading a valid result."/> + <description compact="Checks if the cursor is reading a valid result"/> <return type="bool"/> </docblock> </method> diff --git a/dependencies/php/classes/MongoCursor.xml b/dependencies/php/classes/MongoCursor.xml index 98170793f58ed846daaded997163b832ff6cbe24..1ceb94920d9d48a32457a38ba88399e8f19bc205 100644 --- a/dependencies/php/classes/MongoCursor.xml +++ b/dependencies/php/classes/MongoCursor.xml @@ -32,7 +32,7 @@ </method> <method name="batchSize" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Limits the number of elements returned in one batch."/> + <description compact="Limits the number of elements returned in one batch"/> <return type="MongoCursor"/> </docblock> <parameter name="batchSize" optional="false" byreference="false" type="int"/> @@ -68,7 +68,7 @@ </method> <method name="doQuery" abstract="false" static="false" visibility="protected" final="false"> <docblock> - <description compact="Execute the query.">Please do not use me.</description> + <description compact="Execute the query">Please do not use me.</description> <return type="void"/> </docblock> </method> @@ -227,7 +227,7 @@ </method> <method name="valid" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Checks if the cursor is reading a valid result."/> + <description compact="Checks if the cursor is reading a valid result"/> <return type="bool"/> </docblock> </method> diff --git a/dependencies/php/classes/MongoDB_BSON_Binary.xml b/dependencies/php/classes/MongoDB_BSON_Binary.xml index ab191d8fa49c4786039c3a537adc4f643eeb58b2..a8a987082ab3faf3998de27f0dfacfd35e130732 100644 --- a/dependencies/php/classes/MongoDB_BSON_Binary.xml +++ b/dependencies/php/classes/MongoDB_BSON_Binary.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\Binary" namespace="" name="MongoDB\BSON\Binary"> - <implements name="MongoDB\BSON\Type" full="MongoDB\BSON\Type"/> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\Binary" namespace="MongoDB\BSON" name="Binary"> + <implements name="MongoDB\BSON\BinaryInterface" full="MongoDB\BSON\BinaryInterface"/> <constant name="TYPE_GENERIC" value="0"> <docblock> <var type="integer"/> @@ -42,7 +42,7 @@ <return type="void"/> </docblock> <parameter name="data" optional="false" byreference="false" type="string"/> - <parameter name="type" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="type" optional="false" byreference="false" type="int"/> </constructor> <method name="getData" abstract="false" static="false" visibility="public" final="true"> <docblock> @@ -53,7 +53,7 @@ <method name="getType" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact="Returns the Binary's type"/> - <return type="integer"/> + <return type="int"/> </docblock> </method> <method name="jsonSerialize" abstract="false" static="false" visibility="public" final="true"> diff --git a/dependencies/php/classes/MongoDB_BSON_DBPointer.xml b/dependencies/php/classes/MongoDB_BSON_DBPointer.xml new file mode 100644 index 0000000000000000000000000000000000000000..a5057658623801c00ab013249447e9329396aaff --- /dev/null +++ b/dependencies/php/classes/MongoDB_BSON_DBPointer.xml @@ -0,0 +1,35 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\DBPointer" namespace="MongoDB\BSON" name="DBPointer"> + <implements name="MongoDB\BSON\Type" full="MongoDB\BSON\Type"/> + <constructor name="__construct" abstract="false" static="false" final="true"> + <docblock> + <description compact="Construct a new DBPointer (unused)"/> + <return type="void"/> + </docblock> + </constructor> + <method name="jsonSerialize" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Returns a representation that can be converted to JSON"/> + <return type="mixed"/> + </docblock> + </method> + <method name="serialize" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Serialize a DBPointer"/> + <return type="string"/> + </docblock> + </method> + <method name="__toString" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Returns an empty string"/> + <return type="string"/> + </docblock> + </method> + <method name="unserialize" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Unserialize a DBPointer"/> + <return type="void"/> + </docblock> + <parameter name="serialized" optional="false" byreference="false" type="string"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/MongoDB_BSON_Decimal128.xml b/dependencies/php/classes/MongoDB_BSON_Decimal128.xml index a11041d89fc9832e863f980e3574d777efedb491..7892fd048ff8e20b84e13343e76c6f78d55054c5 100644 --- a/dependencies/php/classes/MongoDB_BSON_Decimal128.xml +++ b/dependencies/php/classes/MongoDB_BSON_Decimal128.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\Decimal128" namespace="" name="MongoDB\BSON\Decimal128"> - <implements name="MongoDB\BSON\Type" full="MongoDB\BSON\Type"/> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\Decimal128" namespace="MongoDB\BSON" name="Decimal128"> + <implements name="MongoDB\BSON\Decimal128Interface" full="MongoDB\BSON\Decimal128Interface"/> <constructor name="__construct" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact="Construct a new Decimal128"/> diff --git a/dependencies/php/classes/MongoDB_BSON_Int64.xml b/dependencies/php/classes/MongoDB_BSON_Int64.xml new file mode 100644 index 0000000000000000000000000000000000000000..0ad1694f3c44faf67f3be765c7f5ba130f8735fd --- /dev/null +++ b/dependencies/php/classes/MongoDB_BSON_Int64.xml @@ -0,0 +1,35 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\Int64" namespace="MongoDB\BSON" name="Int64"> + <implements name="MongoDB\BSON\Type" full="MongoDB\BSON\Type"/> + <constructor name="__construct" abstract="false" static="false" final="true"> + <docblock> + <description compact="Construct a new Int64 (unused)"/> + <return type="void"/> + </docblock> + </constructor> + <method name="jsonSerialize" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Returns a representation that can be converted to JSON"/> + <return type="mixed"/> + </docblock> + </method> + <method name="serialize" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Serialize an Int64"/> + <return type="string"/> + </docblock> + </method> + <method name="__toString" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Returns the string representation of this Int64"/> + <return type="string"/> + </docblock> + </method> + <method name="unserialize" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Unserialize an Int64"/> + <return type="void"/> + </docblock> + <parameter name="serialized" optional="false" byreference="false" type="string"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/MongoDB_BSON_Javascript.xml b/dependencies/php/classes/MongoDB_BSON_Javascript.xml index e83f84f778eafe77567cac8ec2ad961b0eb3e754..688a00094efd98270830e570cebd78786d0a5b08 100644 --- a/dependencies/php/classes/MongoDB_BSON_Javascript.xml +++ b/dependencies/php/classes/MongoDB_BSON_Javascript.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\Javascript" namespace="" name="MongoDB\BSON\Javascript"> - <implements name="MongoDB\BSON\Type" full="MongoDB\BSON\Type"/> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\Javascript" namespace="MongoDB\BSON" name="Javascript"> + <implements name="MongoDB\BSON\JavascriptInterface" full="MongoDB\BSON\JavascriptInterface"/> <constructor name="__construct" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact="Construct a new Javascript"/> diff --git a/dependencies/php/classes/MongoDB_BSON_MaxKey.xml b/dependencies/php/classes/MongoDB_BSON_MaxKey.xml index a67ada2b0061e7e882cd91f9d7c86a23bf722562..f516cbf4eb15ec54570ee807cfd306d8109a2c1b 100644 --- a/dependencies/php/classes/MongoDB_BSON_MaxKey.xml +++ b/dependencies/php/classes/MongoDB_BSON_MaxKey.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\MaxKey" namespace="" name="MongoDB\BSON\MaxKey"> - <implements name="MongoDB\BSON\Type" full="MongoDB\BSON\Type"/> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\MaxKey" namespace="MongoDB\BSON" name="MaxKey"> + <implements name="MongoDB\BSON\MaxKeyInterface" full="MongoDB\BSON\MaxKeyInterface"/> <constructor name="__construct" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact="Construct a new MaxKey"/> diff --git a/dependencies/php/classes/MongoDB_BSON_MinKey.xml b/dependencies/php/classes/MongoDB_BSON_MinKey.xml index 27b37c443c10acefb0345cf9d13e16afe7dee86c..8646576b994d12e664b9b8e0edf17ceaefa6b06c 100644 --- a/dependencies/php/classes/MongoDB_BSON_MinKey.xml +++ b/dependencies/php/classes/MongoDB_BSON_MinKey.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\MinKey" namespace="" name="MongoDB\BSON\MinKey"> - <implements name="MongoDB\BSON\Type" full="MongoDB\BSON\Type"/> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\MinKey" namespace="MongoDB\BSON" name="MinKey"> + <implements name="MongoDB\BSON\MinKeyInterface" full="MongoDB\BSON\MinKeyInterface"/> <constructor name="__construct" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact="Construct a new MinKey"/> diff --git a/dependencies/php/classes/MongoDB_BSON_ObjectID.xml b/dependencies/php/classes/MongoDB_BSON_ObjectId.xml similarity index 79% rename from dependencies/php/classes/MongoDB_BSON_ObjectID.xml rename to dependencies/php/classes/MongoDB_BSON_ObjectId.xml index 8a7282c2295967eeee6da4aead8b31c7d5e63477..c43b59174e17602850f10b2217d198b6006fa61e 100644 --- a/dependencies/php/classes/MongoDB_BSON_ObjectID.xml +++ b/dependencies/php/classes/MongoDB_BSON_ObjectId.xml @@ -1,17 +1,17 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\ObjectID" namespace="" name="MongoDB\BSON\ObjectID"> - <implements name="MongoDB\BSON\Type" full="MongoDB\BSON\Type"/> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\ObjectId" namespace="MongoDB\BSON" name="ObjectId"> + <implements name="MongoDB\BSON\ObjectIdInterface" full="MongoDB\BSON\ObjectIdInterface"/> <constructor name="__construct" abstract="false" static="false" visibility="public" final="true"> <docblock> - <description compact="Construct a new ObjectID"/> + <description compact="Construct a new ObjectId"/> <return type="void"/> </docblock> <parameter name="id" optional="true" byreference="false" type="string"/> </constructor> <method name="getTimestamp" abstract="false" static="false" visibility="public" final="true"> <docblock> - <description compact="Returns the timestamp component of this ObjectID"/> - <return type="integer"/> + <description compact="Returns the timestamp component of this ObjectId"/> + <return type="int"/> </docblock> </method> <method name="jsonSerialize" abstract="false" static="false" visibility="public" final="true"> @@ -22,19 +22,19 @@ </method> <method name="serialize" abstract="false" static="false" visibility="public" final="true"> <docblock> - <description compact="Serialize an ObjectID"/> + <description compact="Serialize an ObjectId"/> <return type="string"/> </docblock> </method> <method name="__toString" abstract="false" static="false" visibility="public" final="true"> <docblock> - <description compact="Returns the hexidecimal representation of this ObjectID"/> + <description compact="Returns the hexidecimal representation of this ObjectId"/> <return type="string"/> </docblock> </method> <method name="unserialize" abstract="false" static="false" visibility="public" final="true"> <docblock> - <description compact="Unserialize an ObjectID"/> + <description compact="Unserialize an ObjectId"/> <return type="void"/> </docblock> <parameter name="serialized" optional="false" byreference="false" type="string"/> diff --git a/dependencies/php/classes/MongoDB_BSON_Regex.xml b/dependencies/php/classes/MongoDB_BSON_Regex.xml index e543be07a984af0bccc10517b885ce01658e93e3..b336bbec23825153a9c48d5cc8dba8f7fd91846a 100644 --- a/dependencies/php/classes/MongoDB_BSON_Regex.xml +++ b/dependencies/php/classes/MongoDB_BSON_Regex.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\Regex" namespace="" name="MongoDB\BSON\Regex"> - <implements name="MongoDB\BSON\Type" full="MongoDB\BSON\Type"/> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\Regex" namespace="MongoDB\BSON" name="Regex"> + <implements name="MongoDB\BSON\RegexInterface" full="MongoDB\BSON\RegexInterface"/> <constructor name="__construct" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact="Construct a new Regex"/> diff --git a/dependencies/php/classes/MongoDB_BSON_Symbol.xml b/dependencies/php/classes/MongoDB_BSON_Symbol.xml new file mode 100644 index 0000000000000000000000000000000000000000..b19bf61cc18d8927c9b6ff6fc0be87651956b26f --- /dev/null +++ b/dependencies/php/classes/MongoDB_BSON_Symbol.xml @@ -0,0 +1,35 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\Symbol" namespace="MongoDB\BSON" name="Symbol"> + <implements name="MongoDB\BSON\Type" full="MongoDB\BSON\Type"/> + <constructor name="__construct" abstract="false" static="false" final="true"> + <docblock> + <description compact="Construct a new Symbol (unused)"/> + <return type="void"/> + </docblock> + </constructor> + <method name="jsonSerialize" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Returns a representation that can be converted to JSON"/> + <return type="mixed"/> + </docblock> + </method> + <method name="serialize" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Serialize a Symbol"/> + <return type="string"/> + </docblock> + </method> + <method name="__toString" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Returns the Symbol as a string"/> + <return type="string"/> + </docblock> + </method> + <method name="unserialize" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Unserialize a Symbol"/> + <return type="void"/> + </docblock> + <parameter name="serialized" optional="false" byreference="false" type="string"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/MongoDB_BSON_Timestamp.xml b/dependencies/php/classes/MongoDB_BSON_Timestamp.xml index b355f91a6edb8e71e9ebefbd282b90e0d581e723..828a4991b2c9d9e88a1bcb33b69aa75ecf946e3c 100644 --- a/dependencies/php/classes/MongoDB_BSON_Timestamp.xml +++ b/dependencies/php/classes/MongoDB_BSON_Timestamp.xml @@ -1,14 +1,26 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\Timestamp" namespace="" name="MongoDB\BSON\Timestamp"> - <implements name="MongoDB\BSON\Type" full="MongoDB\BSON\Type"/> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\Timestamp" namespace="MongoDB\BSON" name="Timestamp"> + <implements name="MongoDB\BSON\TimestampInterface" full="MongoDB\BSON\TimestampInterface"/> <constructor name="__construct" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact="Construct a new Timestamp"/> <return type="void"/> </docblock> - <parameter name="increment" optional="false" byreference="false" type="object" class="integer"/> - <parameter name="timestamp" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="increment" optional="false" byreference="false" type="int"/> + <parameter name="timestamp" optional="false" byreference="false" type="int"/> </constructor> + <method name="getIncrement" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Returns the increment component of this Timestamp"/> + <return type="int"/> + </docblock> + </method> + <method name="getTimestamp" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Returns the timestamp component of this Timestamp"/> + <return type="int"/> + </docblock> + </method> <method name="jsonSerialize" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact="Returns a representation that can be converted to JSON"/> diff --git a/dependencies/php/classes/MongoDB_BSON_UTCDateTime.xml b/dependencies/php/classes/MongoDB_BSON_UTCDateTime.xml index 85722073002b1d2aa3e16b49174842617ffc5de2..37b3502ad81443a296ea245ed49b3674691f1ec4 100644 --- a/dependencies/php/classes/MongoDB_BSON_UTCDateTime.xml +++ b/dependencies/php/classes/MongoDB_BSON_UTCDateTime.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\UTCDateTime" namespace="" name="MongoDB\BSON\UTCDateTime"> - <implements name="MongoDB\BSON\Type" full="MongoDB\BSON\Type"/> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\UTCDateTime" namespace="MongoDB\BSON" name="UTCDateTime"> + <implements name="MongoDB\BSON\UTCDateTimeInterface" full="MongoDB\BSON\UTCDateTimeInterface"/> <constructor name="__construct" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact="Construct a new UTCDateTime"/> diff --git a/dependencies/php/classes/MongoDB_BSON_Undefined.xml b/dependencies/php/classes/MongoDB_BSON_Undefined.xml new file mode 100644 index 0000000000000000000000000000000000000000..a506c98978976470c1252fd34d74e5ffad90c240 --- /dev/null +++ b/dependencies/php/classes/MongoDB_BSON_Undefined.xml @@ -0,0 +1,35 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\Undefined" namespace="MongoDB\BSON" name="Undefined"> + <implements name="MongoDB\BSON\Type" full="MongoDB\BSON\Type"/> + <constructor name="__construct" abstract="false" static="false" final="true"> + <docblock> + <description compact="Construct a new Undefined (unused)"/> + <return type="void"/> + </docblock> + </constructor> + <method name="jsonSerialize" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Returns a representation that can be converted to JSON"/> + <return type="mixed"/> + </docblock> + </method> + <method name="serialize" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Serialize a Undefined"/> + <return type="string"/> + </docblock> + </method> + <method name="__toString" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Returns an empty string"/> + <return type="string"/> + </docblock> + </method> + <method name="unserialize" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Unserialize a Undefined"/> + <return type="void"/> + </docblock> + <parameter name="serialized" optional="false" byreference="false" type="string"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/MongoDB_Driver_BulkWrite.xml b/dependencies/php/classes/MongoDB_Driver_BulkWrite.xml index 4eef41e5e7aa7df49f69f4edfea087cd8b53f64f..f4a3ade81d9d75f62894008fae8832e1794e9f44 100644 --- a/dependencies/php/classes/MongoDB_Driver_BulkWrite.xml +++ b/dependencies/php/classes/MongoDB_Driver_BulkWrite.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\BulkWrite" namespace="" name="MongoDB\Driver\BulkWrite"> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\BulkWrite" namespace="MongoDB\Driver" name="BulkWrite"> <implements name="Countable" full="Countable"/> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/MongoDB_Driver_Command.xml b/dependencies/php/classes/MongoDB_Driver_Command.xml index 035557013a7e61d1b43d22f713c974cc897056ac..b34535620216d6ee27fe73a1afb3c6e8f480e038 100644 --- a/dependencies/php/classes/MongoDB_Driver_Command.xml +++ b/dependencies/php/classes/MongoDB_Driver_Command.xml @@ -1,10 +1,11 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Command" namespace="" name="MongoDB\Driver\Command"> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Command" namespace="MongoDB\Driver" name="Command"> <constructor name="__construct" abstract="false" static="false" visibility="public" final="true"> <docblock> - <description compact="Create a new Command"/> + <description compact="Create a new Command">Constructs a new MongoDB\Driver\Command, which is an immutable value object that represents a database command. The command may then be executed with MongoDB\Driver\Manager::executeCommand.</description> <return type="void"/> </docblock> <parameter name="document" optional="false" byreference="false" type="object" class="array|object"/> + <parameter name="commandOptions" optional="true" byreference="false" type="object" class="array"/> </constructor> </class> \ No newline at end of file diff --git a/dependencies/php/classes/MongoDB_Driver_Cursor.xml b/dependencies/php/classes/MongoDB_Driver_Cursor.xml index 1036f75c8df739731e30a33b8806b619823a42f1..329a830c4d4b56a5ad7ab72646ed2dd569e85ae8 100644 --- a/dependencies/php/classes/MongoDB_Driver_Cursor.xml +++ b/dependencies/php/classes/MongoDB_Driver_Cursor.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Cursor" namespace="" name="MongoDB\Driver\Cursor"> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Cursor" namespace="MongoDB\Driver" name="Cursor"> <implements name="Traversable" full="Traversable"/> <constructor name="__construct" abstract="false" static="false" final="true"> <docblock> @@ -21,7 +21,7 @@ </method> <method name="isDead" abstract="false" static="false" visibility="public" final="true"> <docblock> - <description compact="Checks if the cursor is still open on the server">Returns whether the cursor is still open on the server (i.e. the server has more results that have yet to be sent to the client).</description> + <description compact="Checks if the cursor may have additional results"/> <return type="bool"/> </docblock> </method> diff --git a/dependencies/php/classes/MongoDB_Driver_CursorId.xml b/dependencies/php/classes/MongoDB_Driver_CursorId.xml index 57e672519729e67b5104ce2b1a2ec49c0b02c673..19928cfa9ee3bb7d65be38cb180ca2350ed35e87 100644 --- a/dependencies/php/classes/MongoDB_Driver_CursorId.xml +++ b/dependencies/php/classes/MongoDB_Driver_CursorId.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\CursorId" namespace="" name="MongoDB\Driver\CursorId"> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\CursorId" namespace="MongoDB\Driver" name="CursorId"> <constructor name="__construct" abstract="false" static="false" final="true"> <docblock> <description compact="Create a new CursorId (not used)"/> diff --git a/dependencies/php/classes/MongoDB_Driver_Exception_AuthenticationException.xml b/dependencies/php/classes/MongoDB_Driver_Exception_AuthenticationException.xml index a6f660468f1377c2e75e7eedda9bf46d7e506416..01c2a4f74640fddb11992ee6d90a8b1622652ac3 100644 --- a/dependencies/php/classes/MongoDB_Driver_Exception_AuthenticationException.xml +++ b/dependencies/php/classes/MongoDB_Driver_Exception_AuthenticationException.xml @@ -1,6 +1,13 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Exception\AuthenticationException" namespace="" name="MongoDB\Driver\Exception\AuthenticationException"> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Exception\AuthenticationException" namespace="MongoDB\Driver\Exception" name="AuthenticationException"> <implements name="MongoDB\Driver\Exception\Exception" full="MongoDB\Driver\Exception\Exception"/> + <member name="errorLabels" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="Contains an array of error labels to go with an exception. For example, error labels can be used to detect whether a transaction can be retried safely if the TransientTransactionError label is present. The existence of a specific error label should be tested for with the MongoDB\Driver\Exception\RuntimeException::hasErrorLabel, instead of interpreting this errorLabels property manually."/> + <var type="bool"/> + </docblock> + </member> <member name="message" static="false" visibility="protected"> <default>null</default> <docblock> @@ -29,6 +36,13 @@ <var type="int"/> </docblock> </member> + <method name="hasErrorLabel" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="errorLabel" optional="false" byreference="false" type="string"/> + </method> <method name="getMessage" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact=""/> diff --git a/dependencies/php/classes/MongoDB_Driver_Exception_BulkWriteException.xml b/dependencies/php/classes/MongoDB_Driver_Exception_BulkWriteException.xml index d7d373b46e8b2814a61a2621a75c7004e219dad0..10980a5911f71f45666a2fb69346da3679e0c629 100644 --- a/dependencies/php/classes/MongoDB_Driver_Exception_BulkWriteException.xml +++ b/dependencies/php/classes/MongoDB_Driver_Exception_BulkWriteException.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Exception\BulkWriteException" namespace="" name="MongoDB\Driver\Exception\BulkWriteException"> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Exception\BulkWriteException" namespace="MongoDB\Driver\Exception" name="BulkWriteException"> <implements name="MongoDB\Driver\Exception\Exception" full="MongoDB\Driver\Exception\Exception"/> <member name="writeResult" static="false" visibility="protected"> <default>null</default> @@ -8,6 +8,13 @@ <var type="MongoDB\Driver\WriteResult"/> </docblock> </member> + <member name="errorLabels" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="Contains an array of error labels to go with an exception. For example, error labels can be used to detect whether a transaction can be retried safely if the TransientTransactionError label is present. The existence of a specific error label should be tested for with the MongoDB\Driver\Exception\RuntimeException::hasErrorLabel, instead of interpreting this errorLabels property manually."/> + <var type="bool"/> + </docblock> + </member> <member name="message" static="false" visibility="protected"> <default>null</default> <docblock> @@ -42,6 +49,13 @@ <return type="MongoDB\Driver\WriteResult"/> </docblock> </method> + <method name="hasErrorLabel" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="errorLabel" optional="false" byreference="false" type="string"/> + </method> <method name="getMessage" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact=""/> diff --git a/dependencies/php/classes/MongoDB_Driver_Exception_CommandException.xml b/dependencies/php/classes/MongoDB_Driver_Exception_CommandException.xml new file mode 100644 index 0000000000000000000000000000000000000000..8cb124cf6d859b963b73b3f465e65d2989e75160 --- /dev/null +++ b/dependencies/php/classes/MongoDB_Driver_Exception_CommandException.xml @@ -0,0 +1,113 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Exception\CommandException" namespace="MongoDB\Driver\Exception" name="CommandException"> + <implements name="MongoDB\Driver\Exception\Exception" full="MongoDB\Driver\Exception\Exception"/> + <member name="resultDocument" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The result document associated with the failed command."/> + <var type="object"/> + </docblock> + </member> + <member name="errorLabels" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="Contains an array of error labels to go with an exception. For example, error labels can be used to detect whether a transaction can be retried safely if the TransientTransactionError label is present. The existence of a specific error label should be tested for with the MongoDB\Driver\Exception\RuntimeException::hasErrorLabel, instead of interpreting this errorLabels property manually."/> + <var type="bool"/> + </docblock> + </member> + <member name="message" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The exception message"/> + <var type="string"/> + </docblock> + </member> + <member name="code" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The exception code"/> + <var type="int"/> + </docblock> + </member> + <member name="file" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The filename where the exception was created"/> + <var type="string"/> + </docblock> + </member> + <member name="line" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The line where the exception was created"/> + <var type="int"/> + </docblock> + </member> + <method name="getResultDocument" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Returns the result document for the failed command"/> + <return type="object"/> + </docblock> + </method> + <method name="hasErrorLabel" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="errorLabel" optional="false" byreference="false" type="string"/> + </method> + <method name="getMessage" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getPrevious" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="Throwable"/> + </docblock> + </method> + <method name="getCode" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="mixed"/> + </docblock> + </method> + <method name="getFile" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getLine" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + </method> + <method name="getTrace" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + </method> + <method name="getTraceAsString" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="__toString" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="__clone" abstract="false" static="false" final="true"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/MongoDB_Driver_Exception_ConnectionException.xml b/dependencies/php/classes/MongoDB_Driver_Exception_ConnectionException.xml index 6cc1f2c4b6ae0e1fd27ae9369d647395b07d38c1..3eb1198169c058407201792f72f64ab28fb829dc 100644 --- a/dependencies/php/classes/MongoDB_Driver_Exception_ConnectionException.xml +++ b/dependencies/php/classes/MongoDB_Driver_Exception_ConnectionException.xml @@ -1,6 +1,13 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Exception\ConnectionException" namespace="" name="MongoDB\Driver\Exception\ConnectionException"> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Exception\ConnectionException" namespace="MongoDB\Driver\Exception" name="ConnectionException"> <implements name="MongoDB\Driver\Exception\Exception" full="MongoDB\Driver\Exception\Exception"/> + <member name="errorLabels" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="Contains an array of error labels to go with an exception. For example, error labels can be used to detect whether a transaction can be retried safely if the TransientTransactionError label is present. The existence of a specific error label should be tested for with the MongoDB\Driver\Exception\RuntimeException::hasErrorLabel, instead of interpreting this errorLabels property manually."/> + <var type="bool"/> + </docblock> + </member> <member name="message" static="false" visibility="protected"> <default>null</default> <docblock> @@ -29,6 +36,13 @@ <var type="int"/> </docblock> </member> + <method name="hasErrorLabel" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="errorLabel" optional="false" byreference="false" type="string"/> + </method> <method name="getMessage" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact=""/> diff --git a/dependencies/php/classes/MongoDB_Driver_Exception_ConnectionTimeoutException.xml b/dependencies/php/classes/MongoDB_Driver_Exception_ConnectionTimeoutException.xml index ede9d1ab344125d16e1ceef82858438709cc421b..ed61eb787e085c87f32e5c039fc09d821c72cd0f 100644 --- a/dependencies/php/classes/MongoDB_Driver_Exception_ConnectionTimeoutException.xml +++ b/dependencies/php/classes/MongoDB_Driver_Exception_ConnectionTimeoutException.xml @@ -1,6 +1,13 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Exception\ConnectionTimeoutException" namespace="" name="MongoDB\Driver\Exception\ConnectionTimeoutException"> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Exception\ConnectionTimeoutException" namespace="MongoDB\Driver\Exception" name="ConnectionTimeoutException"> <implements name="MongoDB\Driver\Exception\Exception" full="MongoDB\Driver\Exception\Exception"/> + <member name="errorLabels" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="Contains an array of error labels to go with an exception. For example, error labels can be used to detect whether a transaction can be retried safely if the TransientTransactionError label is present. The existence of a specific error label should be tested for with the MongoDB\Driver\Exception\RuntimeException::hasErrorLabel, instead of interpreting this errorLabels property manually."/> + <var type="bool"/> + </docblock> + </member> <member name="message" static="false" visibility="protected"> <default>null</default> <docblock> @@ -29,6 +36,13 @@ <var type="int"/> </docblock> </member> + <method name="hasErrorLabel" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="errorLabel" optional="false" byreference="false" type="string"/> + </method> <method name="getMessage" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact=""/> diff --git a/dependencies/php/classes/MongoDB_Driver_Exception_ExecutionTimeoutException.xml b/dependencies/php/classes/MongoDB_Driver_Exception_ExecutionTimeoutException.xml index 78772232f330b552ab3c1cb900f751c3f3a7d50e..d69cda644b9568d6e503a7ea03dc37a83ea8f670 100644 --- a/dependencies/php/classes/MongoDB_Driver_Exception_ExecutionTimeoutException.xml +++ b/dependencies/php/classes/MongoDB_Driver_Exception_ExecutionTimeoutException.xml @@ -1,6 +1,13 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Exception\ExecutionTimeoutException" namespace="" name="MongoDB\Driver\Exception\ExecutionTimeoutException"> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Exception\ExecutionTimeoutException" namespace="MongoDB\Driver\Exception" name="ExecutionTimeoutException"> <implements name="MongoDB\Driver\Exception\Exception" full="MongoDB\Driver\Exception\Exception"/> + <member name="errorLabels" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="Contains an array of error labels to go with an exception. For example, error labels can be used to detect whether a transaction can be retried safely if the TransientTransactionError label is present. The existence of a specific error label should be tested for with the MongoDB\Driver\Exception\RuntimeException::hasErrorLabel, instead of interpreting this errorLabels property manually."/> + <var type="bool"/> + </docblock> + </member> <member name="message" static="false" visibility="protected"> <default>null</default> <docblock> @@ -29,6 +36,13 @@ <var type="int"/> </docblock> </member> + <method name="hasErrorLabel" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="errorLabel" optional="false" byreference="false" type="string"/> + </method> <method name="getMessage" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact=""/> diff --git a/dependencies/php/classes/MongoDB_Driver_Exception_InvalidArgumentException.xml b/dependencies/php/classes/MongoDB_Driver_Exception_InvalidArgumentException.xml index 84a354b2d787af6b1d970139457399b1bca36ac4..0cfee28359106df3842ae44598c5bb6cab38ac8f 100644 --- a/dependencies/php/classes/MongoDB_Driver_Exception_InvalidArgumentException.xml +++ b/dependencies/php/classes/MongoDB_Driver_Exception_InvalidArgumentException.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Exception\InvalidArgumentException" namespace="" name="MongoDB\Driver\Exception\InvalidArgumentException"> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Exception\InvalidArgumentException" namespace="MongoDB\Driver\Exception" name="InvalidArgumentException"> <implements name="MongoDB\Driver\Exception\Exception" full="MongoDB\Driver\Exception\Exception"/> <member name="message" static="false" visibility="protected"> <default>null</default> diff --git a/dependencies/php/classes/MongoDB_Driver_Exception_LogicException.xml b/dependencies/php/classes/MongoDB_Driver_Exception_LogicException.xml index e3974b1dd4889d79311a2902f7364c109844495b..c4c091bdd8f71da1116f1c9a293f55629208caa9 100644 --- a/dependencies/php/classes/MongoDB_Driver_Exception_LogicException.xml +++ b/dependencies/php/classes/MongoDB_Driver_Exception_LogicException.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Exception\LogicException" namespace="" name="MongoDB\Driver\Exception\LogicException"> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Exception\LogicException" namespace="MongoDB\Driver\Exception" name="LogicException"> <implements name="MongoDB\Driver\Exception\Exception" full="MongoDB\Driver\Exception\Exception"/> <member name="message" static="false" visibility="protected"> <default>null</default> diff --git a/dependencies/php/classes/MongoDB_Driver_Exception_RuntimeException.xml b/dependencies/php/classes/MongoDB_Driver_Exception_RuntimeException.xml index 8fc46a9dcc7e62a63ea5f4476a77e66f8e2396ca..ed65b05e01a645209acaff6cb86b46e37e85ab77 100644 --- a/dependencies/php/classes/MongoDB_Driver_Exception_RuntimeException.xml +++ b/dependencies/php/classes/MongoDB_Driver_Exception_RuntimeException.xml @@ -1,6 +1,13 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Exception\RuntimeException" namespace="" name="MongoDB\Driver\Exception\RuntimeException"> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Exception\RuntimeException" namespace="MongoDB\Driver\Exception" name="RuntimeException"> <implements name="MongoDB\Driver\Exception\Exception" full="MongoDB\Driver\Exception\Exception"/> + <member name="errorLabels" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="Contains an array of error labels to go with an exception. For example, error labels can be used to detect whether a transaction can be retried safely if the TransientTransactionError label is present. The existence of a specific error label should be tested for with the MongoDB\Driver\Exception\RuntimeException::hasErrorLabel, instead of interpreting this errorLabels property manually."/> + <var type="bool"/> + </docblock> + </member> <member name="message" static="false" visibility="protected"> <default>null</default> <docblock> @@ -29,6 +36,13 @@ <var type="int"/> </docblock> </member> + <method name="hasErrorLabel" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Returns whether an error label is associated with an exception"/> + <return type="bool"/> + </docblock> + <parameter name="errorLabel" optional="false" byreference="false" type="string"/> + </method> <method name="getMessage" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact=""/> diff --git a/dependencies/php/classes/MongoDB_Driver_Exception_SSLConnectionException.xml b/dependencies/php/classes/MongoDB_Driver_Exception_SSLConnectionException.xml index 8993837b915abf7730c0ae3576b6cf25801dd890..6236ee2ebb1cc5555b74afa473c538618c45ffe2 100644 --- a/dependencies/php/classes/MongoDB_Driver_Exception_SSLConnectionException.xml +++ b/dependencies/php/classes/MongoDB_Driver_Exception_SSLConnectionException.xml @@ -1,6 +1,13 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Exception\SSLConnectionException" namespace="" name="MongoDB\Driver\Exception\SSLConnectionException"> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Exception\SSLConnectionException" namespace="MongoDB\Driver\Exception" name="SSLConnectionException"> <implements name="MongoDB\Driver\Exception\Exception" full="MongoDB\Driver\Exception\Exception"/> + <member name="errorLabels" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="Contains an array of error labels to go with an exception. For example, error labels can be used to detect whether a transaction can be retried safely if the TransientTransactionError label is present. The existence of a specific error label should be tested for with the MongoDB\Driver\Exception\RuntimeException::hasErrorLabel, instead of interpreting this errorLabels property manually."/> + <var type="bool"/> + </docblock> + </member> <member name="message" static="false" visibility="protected"> <default>null</default> <docblock> @@ -29,6 +36,13 @@ <var type="int"/> </docblock> </member> + <method name="hasErrorLabel" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="errorLabel" optional="false" byreference="false" type="string"/> + </method> <method name="getMessage" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact=""/> diff --git a/dependencies/php/classes/MongoDB_Driver_Exception_ServerException.xml b/dependencies/php/classes/MongoDB_Driver_Exception_ServerException.xml new file mode 100644 index 0000000000000000000000000000000000000000..c8ec866684decdeb664ddbfff373a6ee0747aa32 --- /dev/null +++ b/dependencies/php/classes/MongoDB_Driver_Exception_ServerException.xml @@ -0,0 +1,100 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Exception\ServerException" namespace="MongoDB\Driver\Exception" name="ServerException"> + <implements name="MongoDB\Driver\Exception\Exception" full="MongoDB\Driver\Exception\Exception"/> + <member name="errorLabels" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="Contains an array of error labels to go with an exception. For example, error labels can be used to detect whether a transaction can be retried safely if the TransientTransactionError label is present. The existence of a specific error label should be tested for with the MongoDB\Driver\Exception\RuntimeException::hasErrorLabel, instead of interpreting this errorLabels property manually."/> + <var type="bool"/> + </docblock> + </member> + <member name="message" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The exception message"/> + <var type="string"/> + </docblock> + </member> + <member name="code" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The exception code"/> + <var type="int"/> + </docblock> + </member> + <member name="file" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The filename where the exception was created"/> + <var type="string"/> + </docblock> + </member> + <member name="line" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The line where the exception was created"/> + <var type="int"/> + </docblock> + </member> + <method name="hasErrorLabel" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="errorLabel" optional="false" byreference="false" type="string"/> + </method> + <method name="getMessage" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getPrevious" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="Throwable"/> + </docblock> + </method> + <method name="getCode" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="mixed"/> + </docblock> + </method> + <method name="getFile" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getLine" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + </method> + <method name="getTrace" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + </method> + <method name="getTraceAsString" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="__toString" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="__clone" abstract="false" static="false" final="true"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/MongoDB_Driver_Exception_UnexpectedValueException.xml b/dependencies/php/classes/MongoDB_Driver_Exception_UnexpectedValueException.xml index 5de2280ed97590dcbdc18b4645e48c0da3fe056c..dfc63a36b711a33363d65a5131050eee599bedb0 100644 --- a/dependencies/php/classes/MongoDB_Driver_Exception_UnexpectedValueException.xml +++ b/dependencies/php/classes/MongoDB_Driver_Exception_UnexpectedValueException.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Exception\UnexpectedValueException" namespace="" name="MongoDB\Driver\Exception\UnexpectedValueException"> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Exception\UnexpectedValueException" namespace="MongoDB\Driver\Exception" name="UnexpectedValueException"> <implements name="MongoDB\Driver\Exception\Exception" full="MongoDB\Driver\Exception\Exception"/> <member name="message" static="false" visibility="protected"> <default>null</default> diff --git a/dependencies/php/classes/MongoDB_Driver_Exception_WriteException.xml b/dependencies/php/classes/MongoDB_Driver_Exception_WriteException.xml index 4e39ad2fde9471dc49c7200994a957bd0d76708a..8e954cb81a8e203a0a2081e4140c1226c8911052 100644 --- a/dependencies/php/classes/MongoDB_Driver_Exception_WriteException.xml +++ b/dependencies/php/classes/MongoDB_Driver_Exception_WriteException.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Exception\WriteException" namespace="" name="MongoDB\Driver\Exception\WriteException"> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Exception\WriteException" namespace="MongoDB\Driver\Exception" name="WriteException"> <implements name="MongoDB\Driver\Exception\Exception" full="MongoDB\Driver\Exception\Exception"/> <member name="writeResult" static="false" visibility="protected"> <default>null</default> @@ -8,6 +8,13 @@ <var type="MongoDB\Driver\WriteResult"/> </docblock> </member> + <member name="errorLabels" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="Contains an array of error labels to go with an exception. For example, error labels can be used to detect whether a transaction can be retried safely if the TransientTransactionError label is present. The existence of a specific error label should be tested for with the MongoDB\Driver\Exception\RuntimeException::hasErrorLabel, instead of interpreting this errorLabels property manually."/> + <var type="bool"/> + </docblock> + </member> <member name="message" static="false" visibility="protected"> <default>null</default> <docblock> @@ -42,6 +49,13 @@ <return type="MongoDB\Driver\WriteResult"/> </docblock> </method> + <method name="hasErrorLabel" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="errorLabel" optional="false" byreference="false" type="string"/> + </method> <method name="getMessage" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact=""/> diff --git a/dependencies/php/classes/MongoDB_Driver_Manager.xml b/dependencies/php/classes/MongoDB_Driver_Manager.xml index 6481157cb280c6171272b01aebff7eeef97759b9..ff519ffe3730b4b4500b50afb8f8a6522c1470e4 100644 --- a/dependencies/php/classes/MongoDB_Driver_Manager.xml +++ b/dependencies/php/classes/MongoDB_Driver_Manager.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Manager" namespace="" name="MongoDB\Driver\Manager"> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Manager" namespace="MongoDB\Driver" name="Manager"> <constructor name="__construct" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact="Create new MongoDB Manager"/> @@ -16,16 +16,16 @@ </docblock> <parameter name="namespace" optional="false" byreference="false" type="string"/> <parameter name="bulk" optional="false" byreference="false" type="object" class="MongoDB\Driver\BulkWrite"/> - <parameter name="writeConcern" optional="true" byreference="false" type="object" class="MongoDB\Driver\WriteConcern"/> + <parameter name="options" optional="true" byreference="false" type="object" class="array"/> </method> <method name="executeCommand" abstract="false" static="false" visibility="public" final="true"> <docblock> - <description compact="Execute a database command"/> + <description compact="Execute a database command">Selects a server according to the "readPreference" option and executes the command on that server. By default, the read preference from the MongoDB Connection URI will be used.</description> <return type="MongoDB\Driver\Cursor"/> </docblock> <parameter name="db" optional="false" byreference="false" type="string"/> <parameter name="command" optional="false" byreference="false" type="object" class="MongoDB\Driver\Command"/> - <parameter name="readPreference" optional="true" byreference="false" type="object" class="MongoDB\Driver\ReadPreference"/> + <parameter name="options" optional="true" byreference="false" type="object" class="array"/> </method> <method name="executeQuery" abstract="false" static="false" visibility="public" final="true"> <docblock> @@ -34,7 +34,34 @@ </docblock> <parameter name="namespace" optional="false" byreference="false" type="string"/> <parameter name="query" optional="false" byreference="false" type="object" class="MongoDB\Driver\Query"/> - <parameter name="readPreference" optional="true" byreference="false" type="object" class="MongoDB\Driver\ReadPreference"/> + <parameter name="options" optional="true" byreference="false" type="object" class="array"/> + </method> + <method name="executeReadCommand" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Execute a database command that reads">Selects a server according to the "readPreference" option and executes the command on that server. By default, the read preference from the MongoDB Connection URI will be used.</description> + <return type="MongoDB\Driver\Cursor"/> + </docblock> + <parameter name="db" optional="false" byreference="false" type="string"/> + <parameter name="command" optional="false" byreference="false" type="object" class="MongoDB\Driver\Command"/> + <parameter name="options" optional="true" byreference="false" type="object" class="array"/> + </method> + <method name="executeReadWriteCommand" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Execute a database command that reads and writes">Executes the command on the primary server.</description> + <return type="MongoDB\Driver\Cursor"/> + </docblock> + <parameter name="db" optional="false" byreference="false" type="string"/> + <parameter name="command" optional="false" byreference="false" type="object" class="MongoDB\Driver\Command"/> + <parameter name="options" optional="true" byreference="false" type="object" class="array"/> + </method> + <method name="executeWriteCommand" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Execute a database command that writes">Executes the command on the primary server.</description> + <return type="MongoDB\Driver\Cursor"/> + </docblock> + <parameter name="db" optional="false" byreference="false" type="string"/> + <parameter name="command" optional="false" byreference="false" type="object" class="MongoDB\Driver\Command"/> + <parameter name="options" optional="true" byreference="false" type="object" class="array"/> </method> <method name="getReadConcern" abstract="false" static="false" visibility="public" final="true"> <docblock> @@ -50,7 +77,7 @@ </method> <method name="getServers" abstract="false" static="false" visibility="public" final="true"> <docblock> - <description compact="Return the servers to which this manager is connected">Returns an array of MongoDB\Driver\Server instances to which this manager is connected.</description> + <description compact="Return the servers to which this manager is connected"/> <return type="array"/> </docblock> </method> @@ -62,9 +89,16 @@ </method> <method name="selectServer" abstract="false" static="false" visibility="public" final="true"> <docblock> - <description compact="Select a server matching a read preference">Selects a MongoDB\Driver\Server matching readPreference. This may be used to preselect a server in order to perform version checking before executing an operation.</description> + <description compact="Select a server matching a read preference"/> <return type="MongoDB\Driver\Server"/> </docblock> <parameter name="readPreference" optional="false" byreference="false" type="object" class="MongoDB\Driver\ReadPreference"/> </method> + <method name="startSession" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Start a new client session for use with this client"/> + <return type="MongoDB\Driver\Session"/> + </docblock> + <parameter name="options" optional="true" byreference="false" type="object" class="array"/> + </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/MongoDB_Driver_Monitoring_CommandFailedEvent.xml b/dependencies/php/classes/MongoDB_Driver_Monitoring_CommandFailedEvent.xml new file mode 100644 index 0000000000000000000000000000000000000000..6f441899ccdd29d85aa7af1ccbb6ea26f3b1e155 --- /dev/null +++ b/dependencies/php/classes/MongoDB_Driver_Monitoring_CommandFailedEvent.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Monitoring\CommandFailedEvent" namespace="MongoDB\Driver\Monitoring" name="CommandFailedEvent"> + <method name="getCommandName" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Returns the command name"/> + <return type="string"/> + </docblock> + </method> + <method name="getDurationMicros" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Returns the command's duration in microseconds"/> + <return type="int"/> + </docblock> + </method> + <method name="getError" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Returns the Exception associated with the failed command"/> + <return type="Exception"/> + </docblock> + </method> + <method name="getOperationId" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Returns the command's operation ID"/> + <return type="string"/> + </docblock> + </method> + <method name="getReply" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Returns the command reply document"/> + <return type="object"/> + </docblock> + </method> + <method name="getRequestId" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Returns the command's request ID"/> + <return type="string"/> + </docblock> + </method> + <method name="getServer" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Returns the Server on which the command was executed"/> + <return type="MongoDB\Driver\Server"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/MongoDB_Driver_Monitoring_CommandStartedEvent.xml b/dependencies/php/classes/MongoDB_Driver_Monitoring_CommandStartedEvent.xml new file mode 100644 index 0000000000000000000000000000000000000000..34a344b628be5707e45a7a519b04a1c23ca96569 --- /dev/null +++ b/dependencies/php/classes/MongoDB_Driver_Monitoring_CommandStartedEvent.xml @@ -0,0 +1,39 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Monitoring\CommandStartedEvent" namespace="MongoDB\Driver\Monitoring" name="CommandStartedEvent"> + <method name="getCommand" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Returns the command document"/> + <return type="object"/> + </docblock> + </method> + <method name="getCommandName" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Returns the command name"/> + <return type="string"/> + </docblock> + </method> + <method name="getDatabaseName" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Returns the database on which the command was executed"/> + <return type="string"/> + </docblock> + </method> + <method name="getOperationId" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Returns the command's operation ID"/> + <return type="string"/> + </docblock> + </method> + <method name="getRequestId" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Returns the command's request ID"/> + <return type="string"/> + </docblock> + </method> + <method name="getServer" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Returns the Server on which the command was executed"/> + <return type="MongoDB\Driver\Server"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/MongoDB_Driver_Monitoring_CommandSucceededEvent.xml b/dependencies/php/classes/MongoDB_Driver_Monitoring_CommandSucceededEvent.xml new file mode 100644 index 0000000000000000000000000000000000000000..18daee6fcccce5d88b74af0466aa95fc1b9fe9d9 --- /dev/null +++ b/dependencies/php/classes/MongoDB_Driver_Monitoring_CommandSucceededEvent.xml @@ -0,0 +1,39 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Monitoring\CommandSucceededEvent" namespace="MongoDB\Driver\Monitoring" name="CommandSucceededEvent"> + <method name="getCommandName" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Returns the command name"/> + <return type="string"/> + </docblock> + </method> + <method name="getDurationMicros" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Returns the command's duration in microseconds"/> + <return type="int"/> + </docblock> + </method> + <method name="getOperationId" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Returns the command's operation ID"/> + <return type="string"/> + </docblock> + </method> + <method name="getReply" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Returns the command reply document"/> + <return type="object"/> + </docblock> + </method> + <method name="getRequestId" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Returns the command's request ID"/> + <return type="string"/> + </docblock> + </method> + <method name="getServer" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Returns the Server on which the command was executed"/> + <return type="MongoDB\Driver\Server"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/MongoDB_Driver_Query.xml b/dependencies/php/classes/MongoDB_Driver_Query.xml index ba965ab86bf4315ead1ec508d48ec974be0e943e..01c7e0279e5a632e6f733a0491f07a8d7ae1c04a 100644 --- a/dependencies/php/classes/MongoDB_Driver_Query.xml +++ b/dependencies/php/classes/MongoDB_Driver_Query.xml @@ -1,8 +1,8 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Query" namespace="" name="MongoDB\Driver\Query"> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Query" namespace="MongoDB\Driver" name="Query"> <constructor name="__construct" abstract="false" static="false" visibility="public" final="true"> <docblock> - <description compact="Construct new Query"/> + <description compact="Create a new Query"/> <return type="void"/> </docblock> <parameter name="filter" optional="false" byreference="false" type="object" class="array|object"/> diff --git a/dependencies/php/classes/MongoDB_Driver_ReadConcern.xml b/dependencies/php/classes/MongoDB_Driver_ReadConcern.xml index 99024c466f6c39554724ae66611cecc5e89e749c..0701bacfe1f18bd6a92cd0458ee818ac5f2aaf07 100644 --- a/dependencies/php/classes/MongoDB_Driver_ReadConcern.xml +++ b/dependencies/php/classes/MongoDB_Driver_ReadConcern.xml @@ -1,6 +1,11 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\ReadConcern" namespace="" name="MongoDB\Driver\ReadConcern"> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\ReadConcern" namespace="MongoDB\Driver" name="ReadConcern"> <implements name="MongoDB\BSON\Serializable" full="MongoDB\BSON\Serializable"/> + <constant name="AVAILABLE" value=""available""> + <docblock> + <var type="string"/> + </docblock> + </constant> <constant name="LINEARIZABLE" value=""linearizable""> <docblock> <var type="string"/> @@ -24,7 +29,7 @@ </method> <constructor name="__construct" abstract="false" static="false" visibility="public" final="true"> <docblock> - <description compact="Construct immutable ReadConcern"/> + <description compact="Create a new ReadConcern"/> <return type="void"/> </docblock> <parameter name="level" optional="true" byreference="false" type="string"/> @@ -35,4 +40,10 @@ <return type="string|null"/> </docblock> </method> + <method name="isDefault" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Checks if this is the default read concern">Returns whether this is the default read concern (i.e. no options are specified). This method is primarily intended to be used in conjunction with MongoDB\Driver\Manager::getReadConcern to determine whether the Manager has been constructed without any read concern options.</description> + <return type="bool"/> + </docblock> + </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/MongoDB_Driver_ReadPreference.xml b/dependencies/php/classes/MongoDB_Driver_ReadPreference.xml index 428d48bb960c5c2a8e636e93e126316fedc4a255..09dee372953b793517f69ab2a10ba9a7aefed80d 100644 --- a/dependencies/php/classes/MongoDB_Driver_ReadPreference.xml +++ b/dependencies/php/classes/MongoDB_Driver_ReadPreference.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\ReadPreference" namespace="" name="MongoDB\Driver\ReadPreference"> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\ReadPreference" namespace="MongoDB\Driver" name="ReadPreference"> <implements name="MongoDB\BSON\Serializable" full="MongoDB\BSON\Serializable"/> <constant name="RP_PRIMARY" value="1"> <docblock> @@ -44,23 +44,23 @@ </method> <constructor name="__construct" abstract="false" static="false" visibility="public" final="true"> <docblock> - <description compact="Construct immutable ReadPreference"/> + <description compact="Create a new ReadPreference"/> <return type="void"/> </docblock> - <parameter name="mode" optional="false" byreference="false" type="int"/> + <parameter name="mode" optional="false" byreference="false" type="object" class="string|integer"/> <parameter name="tagSets" optional="true" byreference="false" type="object" class="array"/> <parameter name="options" optional="true" byreference="false" type="object" class="array"/> </constructor> <method name="getMaxStalenessSeconds" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact="Returns the ReadPreference's "maxStalenessSeconds" option"/> - <return type="integer"/> + <return type="int"/> </docblock> </method> <method name="getMode" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact="Returns the ReadPreference's "mode" option"/> - <return type="integer"/> + <return type="int"/> </docblock> </method> <method name="getTagSets" abstract="false" static="false" visibility="public" final="true"> diff --git a/dependencies/php/classes/MongoDB_Driver_Server.xml b/dependencies/php/classes/MongoDB_Driver_Server.xml index 21c7650b3afd4fd230ef438935fde9b1c5e789fc..1785d7f9b4246a535094badcb1cefeb8bd2b3967 100644 --- a/dependencies/php/classes/MongoDB_Driver_Server.xml +++ b/dependencies/php/classes/MongoDB_Driver_Server.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Server" namespace="" name="MongoDB\Driver\Server"> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Server" namespace="MongoDB\Driver" name="Server"> <constant name="TYPE_UNKNOWN" value="0"> <docblock> <var type="integer"/> @@ -58,25 +58,52 @@ </docblock> <parameter name="namespace" optional="false" byreference="false" type="string"/> <parameter name="bulk" optional="false" byreference="false" type="object" class="MongoDB\Driver\BulkWrite"/> - <parameter name="writeConcern" optional="true" byreference="false" type="object" class="MongoDB\Driver\WriteConcern"/> + <parameter name="options" optional="true" byreference="false" type="object" class="array"/> </method> <method name="executeCommand" abstract="false" static="false" visibility="public" final="true"> <docblock> - <description compact="Execute a database command on this server">Executes command on this server.</description> + <description compact="Execute a database command on this server">Executes the command on this server.</description> <return type="MongoDB\Driver\Cursor"/> </docblock> <parameter name="db" optional="false" byreference="false" type="string"/> <parameter name="command" optional="false" byreference="false" type="object" class="MongoDB\Driver\Command"/> - <parameter name="readPreference" optional="true" byreference="false" type="object" class="MongoDB\Driver\ReadPreference"/> + <parameter name="options" optional="true" byreference="false" type="object" class="array"/> </method> <method name="executeQuery" abstract="false" static="false" visibility="public" final="true"> <docblock> - <description compact="Execute a database query on this server">Executes query on this server.</description> + <description compact="Execute a database query on this server"/> <return type="MongoDB\Driver\Cursor"/> </docblock> <parameter name="namespace" optional="false" byreference="false" type="string"/> <parameter name="query" optional="false" byreference="false" type="object" class="MongoDB\Driver\Query"/> - <parameter name="readPreference" optional="true" byreference="false" type="object" class="MongoDB\Driver\ReadPreference"/> + <parameter name="options" optional="true" byreference="false" type="object" class="array"/> + </method> + <method name="executeReadCommand" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Execute a database command that reads on this server">Executes the command on this server.</description> + <return type="MongoDB\Driver\Cursor"/> + </docblock> + <parameter name="db" optional="false" byreference="false" type="string"/> + <parameter name="command" optional="false" byreference="false" type="object" class="MongoDB\Driver\Command"/> + <parameter name="options" optional="true" byreference="false" type="object" class="array"/> + </method> + <method name="executeReadWriteCommand" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Execute a database command that reads and writes on this server">Executes the command on this server.</description> + <return type="MongoDB\Driver\Cursor"/> + </docblock> + <parameter name="db" optional="false" byreference="false" type="string"/> + <parameter name="command" optional="false" byreference="false" type="object" class="MongoDB\Driver\Command"/> + <parameter name="options" optional="true" byreference="false" type="object" class="array"/> + </method> + <method name="executeWriteCommand" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Execute a database command that writes on this server">Executes the command on this server.</description> + <return type="MongoDB\Driver\Cursor"/> + </docblock> + <parameter name="db" optional="false" byreference="false" type="string"/> + <parameter name="command" optional="false" byreference="false" type="object" class="MongoDB\Driver\Command"/> + <parameter name="options" optional="true" byreference="false" type="object" class="array"/> </method> <method name="getHost" abstract="false" static="false" visibility="public" final="true"> <docblock> diff --git a/dependencies/php/classes/MongoDB_Driver_Session.xml b/dependencies/php/classes/MongoDB_Driver_Session.xml new file mode 100644 index 0000000000000000000000000000000000000000..a8682ecd5c4d3174f2038f484f86f9fcd9386e71 --- /dev/null +++ b/dependencies/php/classes/MongoDB_Driver_Session.xml @@ -0,0 +1,66 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Session" namespace="MongoDB\Driver" name="Session"> + <method name="abortTransaction" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Aborts a transaction"/> + <return type="void"/> + </docblock> + </method> + <method name="advanceClusterTime" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Advances the cluster time for this session">Advances the cluster time for this session. If the cluster time is less than or equal to the session's current cluster time, this function is a no-op.</description> + <return type="void"/> + </docblock> + <parameter name="clusterTime" optional="false" byreference="false" type="object" class="array|object"/> + </method> + <method name="advanceOperationTime" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Advances the operation time for this session">Advances the operation time for this session. If the operation time is less than or equal to the session's current operation time, this function is a no-op.</description> + <return type="void"/> + </docblock> + <parameter name="operationTime" optional="false" byreference="false" type="object" class="MongoDB\BSON\TimestampInterface"/> + </method> + <method name="commitTransaction" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Commits a transaction"/> + <return type="void"/> + </docblock> + </method> + <constructor name="__construct" abstract="false" static="false" final="true"> + <docblock> + <description compact="Create a new Session (not used)"/> + <return type="void"/> + </docblock> + </constructor> + <method name="endSession" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Terminates a session"/> + <return type="void"/> + </docblock> + </method> + <method name="getClusterTime" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Returns the cluster time for this session"/> + <return type="object|null"/> + </docblock> + </method> + <method name="getLogicalSessionId" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Returns the logical session ID for this session"/> + <return type="object"/> + </docblock> + </method> + <method name="getOperationTime" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Returns the operation time for this session"/> + <return type="MongoDB\BSON\Timestamp|null"/> + </docblock> + </method> + <method name="startTransaction" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Starts a transaction">This method starts a new transaction within this session. When the session is attached to operations through the "session" argument, these operations become of the started transaction.</description> + <return type="void"/> + </docblock> + <parameter name="options" optional="false" byreference="false" type="object" class="array|object"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/MongoDB_Driver_WriteConcern.xml b/dependencies/php/classes/MongoDB_Driver_WriteConcern.xml index 0f8dc00e9d0782cbcac5bb57a1e0ec1241542243..09ac699dc569e0806614768fdd556c25fc6d28e9 100644 --- a/dependencies/php/classes/MongoDB_Driver_WriteConcern.xml +++ b/dependencies/php/classes/MongoDB_Driver_WriteConcern.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\WriteConcern" namespace="" name="MongoDB\Driver\WriteConcern"> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\WriteConcern" namespace="MongoDB\Driver" name="WriteConcern"> <implements name="MongoDB\BSON\Serializable" full="MongoDB\BSON\Serializable"/> <constant name="MAJORITY" value=""majority""> <docblock> @@ -14,23 +14,23 @@ </method> <constructor name="__construct" abstract="false" static="false" visibility="public" final="true"> <docblock> - <description compact="Construct immutable WriteConcern"/> + <description compact="Create a new WriteConcern"/> <return type="void"/> </docblock> - <parameter name="w" optional="false" byreference="false" type="object" class="string|int"/> - <parameter name="wtimeout" optional="true" byreference="false" type="object" class="integer"/> - <parameter name="journal" optional="true" byreference="false" type="object" class="boolean"/> + <parameter name="w" optional="false" byreference="false" type="object" class="string|integer"/> + <parameter name="wtimeout" optional="true" byreference="false" type="int"/> + <parameter name="journal" optional="true" byreference="false" type="object" class="bool"/> </constructor> <method name="getJournal" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact="Returns the WriteConcern's "journal" option"/> - <return type="bool|null"/> + <return type="boolean|null"/> </docblock> </method> <method name="getW" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact="Returns the WriteConcern's "w" option"/> - <return type="string|int|null"/> + <return type="string|integer|null"/> </docblock> </method> <method name="getWtimeout" abstract="false" static="false" visibility="public" final="true"> @@ -39,4 +39,10 @@ <return type="int"/> </docblock> </method> + <method name="isDefault" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact="Checks if this is the default write concern">Returns whether this is the default write concern (i.e. no options are specified). This method is primarily intended to be used in conjunction with MongoDB\Driver\Manager::getWriteConcern to determine whether the Manager has been constructed without any write concern options.</description> + <return type="bool"/> + </docblock> + </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/MongoDB_Driver_WriteConcernError.xml b/dependencies/php/classes/MongoDB_Driver_WriteConcernError.xml index 9b8757a9ff777d8454be71628026d60b6712cf0e..a74adf848ab16ba0fcf4b78924ad49e2d3ed8994 100644 --- a/dependencies/php/classes/MongoDB_Driver_WriteConcernError.xml +++ b/dependencies/php/classes/MongoDB_Driver_WriteConcernError.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\WriteConcernError" namespace="" name="MongoDB\Driver\WriteConcernError"> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\WriteConcernError" namespace="MongoDB\Driver" name="WriteConcernError"> <method name="getCode" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact="Returns the WriteConcernError's error code"/> diff --git a/dependencies/php/classes/MongoDB_Driver_WriteError.xml b/dependencies/php/classes/MongoDB_Driver_WriteError.xml index 5605529e466f024a3a4e5e066caaa2ba46d7d192..91b45b6396284c32bb80f6412d33d8096975b910 100644 --- a/dependencies/php/classes/MongoDB_Driver_WriteError.xml +++ b/dependencies/php/classes/MongoDB_Driver_WriteError.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\WriteError" namespace="" name="MongoDB\Driver\WriteError"> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\WriteError" namespace="MongoDB\Driver" name="WriteError"> <method name="getCode" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact="Returns the WriteError's error code"/> diff --git a/dependencies/php/classes/MongoDB_Driver_WriteResult.xml b/dependencies/php/classes/MongoDB_Driver_WriteResult.xml index 1bc9ce09b9434bbfe33f84540179c002957fdbb3..95630a582ab35a6119a457a09193cde072b99704 100644 --- a/dependencies/php/classes/MongoDB_Driver_WriteResult.xml +++ b/dependencies/php/classes/MongoDB_Driver_WriteResult.xml @@ -1,27 +1,27 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\WriteResult" namespace="" name="MongoDB\Driver\WriteResult"> +<class xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\WriteResult" namespace="MongoDB\Driver" name="WriteResult"> <method name="getDeletedCount" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact="Returns the number of documents deleted"/> - <return type="int|null"/> + <return type="integer|null"/> </docblock> </method> <method name="getInsertedCount" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact="Returns the number of documents inserted (excluding upserts)"/> - <return type="int|null"/> + <return type="integer|null"/> </docblock> </method> <method name="getMatchedCount" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact="Returns the number of documents selected for update"/> - <return type="int|null"/> + <return type="integer|null"/> </docblock> </method> <method name="getModifiedCount" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact="Returns the number of existing documents updated"/> - <return type="int|null"/> + <return type="integer|null"/> </docblock> </method> <method name="getServer" abstract="false" static="false" visibility="public" final="true"> @@ -33,7 +33,7 @@ <method name="getUpsertedCount" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact="Returns the number of documents inserted by an upsert"/> - <return type="int|null"/> + <return type="integer|null"/> </docblock> </method> <method name="getUpsertedIds" abstract="false" static="false" visibility="public" final="true"> diff --git a/dependencies/php/classes/MongoDate.xml b/dependencies/php/classes/MongoDate.xml index 0325edb87e3dd2d0012a6676bd24734ec353da7f..d84b23d199227989271d43ab434dd69a4129cc5f 100644 --- a/dependencies/php/classes/MongoDate.xml +++ b/dependencies/php/classes/MongoDate.xml @@ -14,7 +14,7 @@ </member> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Creates a new date."/> + <description compact="Creates a new date"/> <return type="void"/> </docblock> <parameter name="sec" optional="true" byreference="false" type="int"/> diff --git a/dependencies/php/classes/MongoInt32.xml b/dependencies/php/classes/MongoInt32.xml index 20de949cc7a0837a790c747eb8051175ae9681cc..eec495aa4c4759c4baad4b61b4f58ea9c6aae53a 100644 --- a/dependencies/php/classes/MongoInt32.xml +++ b/dependencies/php/classes/MongoInt32.xml @@ -9,14 +9,14 @@ </member> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Creates a new 32-bit integer."/> + <description compact="Creates a new 32-bit integer"/> <return type="void"/> </docblock> <parameter name="value" optional="false" byreference="false" type="string"/> </constructor> <method name="__toString" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the string representation of this 32-bit integer."/> + <description compact="Returns the string representation of this 32-bit integer"/> <return type="string"/> </docblock> </method> diff --git a/dependencies/php/classes/MongoInt64.xml b/dependencies/php/classes/MongoInt64.xml index 7374a5d9d621a9eb7226cd1e3d8895bcafc1c127..32e1fd1e873c5f92c562e6fe5314a59e249c0a36 100644 --- a/dependencies/php/classes/MongoInt64.xml +++ b/dependencies/php/classes/MongoInt64.xml @@ -9,14 +9,14 @@ </member> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Creates a new 64-bit integer."/> + <description compact="Creates a new 64-bit integer"/> <return type="void"/> </docblock> <parameter name="value" optional="false" byreference="false" type="string"/> </constructor> <method name="__toString" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the string representation of this 64-bit integer."/> + <description compact="Returns the string representation of this 64-bit integer"/> <return type="string"/> </docblock> </method> diff --git a/dependencies/php/classes/MongoPool.xml b/dependencies/php/classes/MongoPool.xml index e3659e19ae661781989ae61149c2fb8219631720..497cb5cc64d850009b0811fc8fde26b2fdd2d939 100644 --- a/dependencies/php/classes/MongoPool.xml +++ b/dependencies/php/classes/MongoPool.xml @@ -8,13 +8,13 @@ </method> <method name="info" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns information about all connection pools."/> + <description compact="Returns information about all connection pools"/> <return type="array"/> </docblock> </method> <method name="setSize" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Set the size for future connection pools."/> + <description compact="Set the size for future connection pools"/> <return type="bool"/> </docblock> <parameter name="size" optional="false" byreference="false" type="int"/> diff --git a/dependencies/php/classes/MongoTimestamp.xml b/dependencies/php/classes/MongoTimestamp.xml index 6a78a2a55e3099a86e71e3a291ae9811813100cf..9320f679f2c21eadb5971685179d9d35760dd76b 100644 --- a/dependencies/php/classes/MongoTimestamp.xml +++ b/dependencies/php/classes/MongoTimestamp.xml @@ -14,7 +14,7 @@ </member> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Creates a new timestamp."/> + <description compact="Creates a new timestamp"/> <return type="void"/> </docblock> <parameter name="sec" optional="true" byreference="false" type="int"/> diff --git a/dependencies/php/classes/Mutex.xml b/dependencies/php/classes/Mutex.xml index 95bbcdadd69b41ea535caca3e998acbd0553708e..ab02da0a3c9e13a1b8681c32a3abbdab269b2a39 100644 --- a/dependencies/php/classes/Mutex.xml +++ b/dependencies/php/classes/Mutex.xml @@ -3,37 +3,37 @@ <method name="create" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact="Create a Mutex"/> - <return type="long"/> + <return type="int"/> </docblock> - <parameter name="lock" optional="true" byreference="false" type="object" class="boolean"/> + <parameter name="lock" optional="true" byreference="false" type="object" class="bool"/> </method> <method name="destroy" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact="Destroy Mutex"/> - <return type="boolean"/> + <return type="bool"/> </docblock> - <parameter name="mutex" optional="false" byreference="false" type="object" class="long"/> + <parameter name="mutex" optional="false" byreference="false" type="int"/> </method> <method name="lock" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact="Acquire Mutex">Attempt to lock the Mutex for the caller.</description> - <return type="boolean"/> + <return type="bool"/> </docblock> - <parameter name="mutex" optional="false" byreference="false" type="object" class="long"/> + <parameter name="mutex" optional="false" byreference="false" type="int"/> </method> <method name="trylock" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact="Attempt to Acquire Mutex"/> - <return type="boolean"/> + <return type="bool"/> </docblock> - <parameter name="mutex" optional="false" byreference="false" type="object" class="long"/> + <parameter name="mutex" optional="false" byreference="false" type="int"/> </method> <method name="unlock" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact="Release Mutex"/> - <return type="boolean"/> + <return type="bool"/> </docblock> - <parameter name="mutex" optional="false" byreference="false" type="object" class="long"/> - <parameter name="destroy" optional="true" byreference="false" type="object" class="boolean"/> + <parameter name="mutex" optional="false" byreference="false" type="int"/> + <parameter name="destroy" optional="true" byreference="false" type="object" class="bool"/> </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/MysqlndUhConnection.xml b/dependencies/php/classes/MysqlndUhConnection.xml index 81f8babb289c72c7e8a0fe94eea9cf4aba3201ea..99235f89e253150fdc82780af4d83c5a9a3af3b7 100644 --- a/dependencies/php/classes/MysqlndUhConnection.xml +++ b/dependencies/php/classes/MysqlndUhConnection.xml @@ -99,7 +99,7 @@ </method> <method name="getLastInsertId" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the auto generated id used in the last query."/> + <description compact="Returns the auto generated id used in the last query"/> <return type="int"/> </docblock> <parameter name="connection" optional="false" byreference="false" type="object" class="mysqlnd_connection"/> @@ -148,7 +148,7 @@ </method> <method name="getStatistics" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns statistics about the client connection."/> + <description compact="Returns statistics about the client connection"/> <return type="array"/> </docblock> <parameter name="connection" optional="false" byreference="false" type="object" class="mysqlnd_connection"/> @@ -329,7 +329,7 @@ <return type="void"/> </docblock> <parameter name="MYSQLND_UH_RES_MYSQLND_NAME" optional="false" byreference="false" type="string"/> - <parameter name=""level"" optional="false" byreference="false" type="string"/> + <parameter name="level" optional="false" byreference="false" type="string"/> </method> <method name="simpleCommand" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/NoRewindIterator.xml b/dependencies/php/classes/NoRewindIterator.xml index a8c3987e94011a0974bc8b3b3c8adc8ed899a0a4..7a270fae4e2dd7d42b384dc4401fac6d19aa28cc 100644 --- a/dependencies/php/classes/NoRewindIterator.xml +++ b/dependencies/php/classes/NoRewindIterator.xml @@ -34,7 +34,7 @@ </method> <method name="rewind" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Prevents the rewind operation on the inner iterator."/> + <description compact="Prevents the rewind operation on the inner iterator"/> <return type="void"/> </docblock> </method> diff --git a/dependencies/php/classes/Normalizer.xml b/dependencies/php/classes/Normalizer.xml index 595c7d5bd8040b5260870e01ff93b3e3d4884eee..91a5a0fe0544daa2a151806090da61b679838042 100644 --- a/dependencies/php/classes/Normalizer.xml +++ b/dependencies/php/classes/Normalizer.xml @@ -1,8 +1,15 @@ <?xml version="1.0" encoding="UTF-8" ?> <class xmlns="http://xml.phpdox.net/src" full="Normalizer" namespace="" name="Normalizer"> + <method name="getRawDecomposition" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Gets the Decomposition_Mapping property for the given UTF-8 encoded code point">Object oriented style</description> + <return type="string"/> + </docblock> + <parameter name="input" optional="false" byreference="false" type="string"/> + </method> <method name="isNormalized" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Checks if the provided string is already in the specified normalization form. ">Object oriented style</description> + <description compact=" Checks if the provided string is already in the specified normalization form ">Object oriented style</description> <return type="bool"/> </docblock> <parameter name="input" optional="false" byreference="false" type="string"/> diff --git a/dependencies/php/classes/NumberFormatter.xml b/dependencies/php/classes/NumberFormatter.xml index aa6cba582c15c7f98625122e4bbbd1dea2ecb5cf..6f43efc262d9eb9723201a75efbe94ffb58a0c36 100644 --- a/dependencies/php/classes/NumberFormatter.xml +++ b/dependencies/php/classes/NumberFormatter.xml @@ -43,13 +43,13 @@ </method> <method name="getErrorCode" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Get formatter's last error code.">Object oriented style</description> + <description compact="Get formatter's last error code">Object oriented style</description> <return type="int"/> </docblock> </method> <method name="getErrorMessage" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Get formatter's last error message.">Object oriented style</description> + <description compact="Get formatter's last error message">Object oriented style</description> <return type="string"/> </docblock> </method> diff --git a/dependencies/php/classes/OAuth.xml b/dependencies/php/classes/OAuth.xml index 499b7a227ff2a44dbc8a0243ea7274b23d76e09d..7dd8579831a9a334f0c490e7143bba0cda1bf0c1 100644 --- a/dependencies/php/classes/OAuth.xml +++ b/dependencies/php/classes/OAuth.xml @@ -144,7 +144,7 @@ <method name="setAuthType" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Set authorization type"/> - <return type="mixed"/> + <return type="bool"/> </docblock> <parameter name="auth_type" optional="false" byreference="false" type="int"/> </method> @@ -179,7 +179,7 @@ </method> <method name="setSSLChecks" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Tweak specific SSL checks for requests."/> + <description compact="Tweak specific SSL checks for requests"/> <return type="bool"/> </docblock> <parameter name="sslcheck" optional="false" byreference="false" type="int"/> diff --git a/dependencies/php/classes/PDO.xml b/dependencies/php/classes/PDO.xml index 8b1a383272f583a81102d87ba22401d534ec3630..883997a37e12e8d277507ac2c0a0dbe90b3451c3 100644 --- a/dependencies/php/classes/PDO.xml +++ b/dependencies/php/classes/PDO.xml @@ -7,7 +7,7 @@ </docblock> <parameter name="dsn" optional="false" byreference="false" type="string"/> <parameter name="username" optional="true" byreference="false" type="string"/> - <parameter name="password" optional="true" byreference="false" type="string"/> + <parameter name="passwd" optional="true" byreference="false" type="string"/> <parameter name="options" optional="true" byreference="false" type="object" class="array"/> </constructor> <method name="beginTransaction" abstract="false" static="false" visibility="public" final="false"> @@ -25,7 +25,7 @@ <method name="errorCode" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=" Fetch the SQLSTATE associated with the last operation on the database handle "/> - <return type="mixed"/> + <return type="string"/> </docblock> </method> <method name="errorInfo" abstract="false" static="false" visibility="public" final="false"> @@ -69,7 +69,7 @@ </method> <method name="prepare" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Prepares a statement for execution and returns a statement object ">Prepares an SQL statement to be executed by the PDOStatement::execute method. The SQL statement can contain zero or more named (:name) or question mark (?) parameter markers for which real values will be substituted when the statement is executed. You cannot use both named and question mark parameter markers within the same SQL statement; pick one or the other parameter style. Use these parameters to bind any user-input, do not include the user-input directly in the query.</description> + <description compact=" Prepares a statement for execution and returns a statement object ">Prepares an SQL statement to be executed by the PDOStatement::execute method. The statement template can contain zero or more named (:name) or question mark (?) parameter markers for which real values will be substituted when the statement is executed. Both named and question mark parameter markers cannot be used within the same statement template; only one or the other parameter style. Use these parameters to bind any user-input, do not include the user-input directly in the query.</description> <return type="PDOStatement"/> </docblock> <parameter name="statement" optional="false" byreference="false" type="string"/> @@ -84,7 +84,7 @@ </method> <method name="quote" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Quotes a string for use in a query. ">PDO::quote places quotes around the input string (if required) and escapes special characters within the input string, using a quoting style appropriate to the underlying driver.</description> + <description compact=" Quotes a string for use in a query ">PDO::quote places quotes around the input string (if required) and escapes special characters within the input string, using a quoting style appropriate to the underlying driver.</description> <return type="string"/> </docblock> <parameter name="string" optional="false" byreference="false" type="string"/> diff --git a/dependencies/php/classes/PDOStatement.xml b/dependencies/php/classes/PDOStatement.xml index 3a67c88b2b73df961771dfe3b6c7960a7eb936b2..a3c7f9ce308b86e0745ee74a6f0f854859c76621 100644 --- a/dependencies/php/classes/PDOStatement.xml +++ b/dependencies/php/classes/PDOStatement.xml @@ -41,7 +41,7 @@ </method> <method name="closeCursor" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Closes the cursor, enabling the statement to be executed again. ">PDOStatement::closeCursor frees up the connection to the server so that other SQL statements may be issued, but leaves the statement in a state that enables it to be executed again.</description> + <description compact=" Closes the cursor, enabling the statement to be executed again ">PDOStatement::closeCursor frees up the connection to the server so that other SQL statements may be issued, but leaves the statement in a state that enables it to be executed again.</description> <return type="bool"/> </docblock> </method> @@ -103,7 +103,7 @@ </method> <method name="fetchObject" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Fetches the next row and returns it as an object.">Fetches the next row and returns it as an object. This function is an alternative to PDOStatement::fetch with PDO::FETCH_CLASS or PDO::FETCH_OBJ style.</description> + <description compact="Fetches the next row and returns it as an object">Fetches the next row and returns it as an object. This function is an alternative to PDOStatement::fetch with PDO::FETCH_CLASS or PDO::FETCH_OBJ style.</description> <return type="mixed"/> </docblock> <parameter name="class_name" optional="true" byreference="false" type="string"/> diff --git a/dependencies/php/classes/ParentIterator.xml b/dependencies/php/classes/ParentIterator.xml index 7b31ed4b82d63b0e5334eff60f9babc0bdb0f19b..a34b5a3ede5b456a8825ed22a3fce261686a56ce 100644 --- a/dependencies/php/classes/ParentIterator.xml +++ b/dependencies/php/classes/ParentIterator.xml @@ -38,4 +38,10 @@ <return type="void"/> </docblock> </method> + <method name="getInnerIterator" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="Iterator"/> + </docblock> + </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/Parle_ErrorInfo.xml b/dependencies/php/classes/Parle_ErrorInfo.xml new file mode 100644 index 0000000000000000000000000000000000000000..c1a9d73d8c6dd25e59a13e6053b1bea69ae51878 --- /dev/null +++ b/dependencies/php/classes/Parle_ErrorInfo.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Parle\ErrorInfo" namespace="Parle" name="ErrorInfo"> + <member name="id" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Error id."/> + <var type="integer"/> + </docblock> + </member> + <member name="position" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Position in the input, where the error occurred."/> + <var type="integer"/> + </docblock> + </member> + <member name="token" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="If applicable - the Parle\Token related to the error, otherwise NULL."/> + <var type="mixed"/> + </docblock> + </member> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Parle_Lexer.xml b/dependencies/php/classes/Parle_Lexer.xml new file mode 100644 index 0000000000000000000000000000000000000000..909539fee94e90445c547f95ffab756289dde480 --- /dev/null +++ b/dependencies/php/classes/Parle_Lexer.xml @@ -0,0 +1,125 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Parle\Lexer" namespace="Parle" name="Lexer"> + <constant name="ICASE" value="1"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="DOT_NOT_LF" value="2"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="DOT_NOT_CRLF" value="4"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="SKIP_WS" value="8"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="MATCH_ZERO_LEN" value="16"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <member name="bol" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Start of input flag."/> + <var type="boolean"/> + </docblock> + </member> + <member name="flags" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Lexer flags."/> + <var type="integer"/> + </docblock> + </member> + <member name="state" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Current lexer state, readonly."/> + <var type="integer"/> + </docblock> + </member> + <member name="marker" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Position of the latest token match, readonly."/> + <var type="integer"/> + </docblock> + </member> + <member name="cursor" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Current input offset, readonly."/> + <var type="integer"/> + </docblock> + </member> + <method name="advance" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Process next lexer rule"/> + <return type="void"/> + </docblock> + </method> + <method name="build" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Finalize the lexer rule set"/> + <return type="void"/> + </docblock> + </method> + <method name="callout" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Define token callback"/> + <return type="void"/> + </docblock> + <parameter name="id" optional="false" byreference="false" type="int"/> + <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> + </method> + <method name="consume" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Pass the data for processing"/> + <return type="void"/> + </docblock> + <parameter name="data" optional="false" byreference="false" type="string"/> + </method> + <method name="dump" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Dump the state machine"/> + <return type="void"/> + </docblock> + </method> + <method name="getToken" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Retrieve the current token"/> + <return type="Parle\Token"/> + </docblock> + </method> + <method name="insertMacro" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Insert regex macro"/> + <return type="void"/> + </docblock> + <parameter name="name" optional="false" byreference="false" type="string"/> + <parameter name="regex" optional="false" byreference="false" type="string"/> + </method> + <method name="push" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Add a lexer rule"/> + <return type="void"/> + </docblock> + <parameter name="regex" optional="false" byreference="false" type="string"/> + <parameter name="id" optional="false" byreference="false" type="int"/> + </method> + <method name="reset" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Reset lexer"/> + <return type="void"/> + </docblock> + <parameter name="pos" optional="false" byreference="false" type="int"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Parle_LexerException.xml b/dependencies/php/classes/Parle_LexerException.xml new file mode 100644 index 0000000000000000000000000000000000000000..719f6c8925544e79e54ce6a86ec82c9d2b15296b --- /dev/null +++ b/dependencies/php/classes/Parle_LexerException.xml @@ -0,0 +1,86 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Parle\LexerException" namespace="Parle" name="LexerException"> + <implements name="Throwable" full="Throwable"/> + <member name="message" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The exception message"/> + <var type="string"/> + </docblock> + </member> + <member name="code" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The exception code"/> + <var type="int"/> + </docblock> + </member> + <member name="file" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The filename where the exception was created"/> + <var type="string"/> + </docblock> + </member> + <member name="line" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The line where the exception was created"/> + <var type="int"/> + </docblock> + </member> + <method name="getMessage" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getPrevious" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="Throwable"/> + </docblock> + </method> + <method name="getCode" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="mixed"/> + </docblock> + </method> + <method name="getFile" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getLine" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + </method> + <method name="getTrace" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + </method> + <method name="getTraceAsString" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="__toString" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="__clone" abstract="false" static="false" final="true"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Parle_Parser.xml b/dependencies/php/classes/Parle_Parser.xml new file mode 100644 index 0000000000000000000000000000000000000000..96c7e6ae65fcbb95a59d44ae0742be3f0ddd6605 --- /dev/null +++ b/dependencies/php/classes/Parle_Parser.xml @@ -0,0 +1,167 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Parle\Parser" namespace="Parle" name="Parser"> + <constant name="ACTION_ERROR" value="0"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="ACTION_SHIFT" value="1"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="ACTION_REDUCE" value="2"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="ACTION_GOTO" value="3"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="ACTION_ACCEPT" value="4"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="ERROR_SYNTAX" value="0"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="ERROR_NON_ASSOCIATIVE" value="1"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="ERROR_UNKOWN_TOKEN" value="2"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <member name="action" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Current parser action that matches one of the action class constants, readonly."/> + <var type="integer"/> + </docblock> + </member> + <member name="reduceId" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Grammar rule id just processed in the reduce action. The value corresponds either to a token or to a production id. Readonly."/> + <var type="integer"/> + </docblock> + </member> + <method name="advance" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Process next parser rule"/> + <return type="void"/> + </docblock> + </method> + <method name="build" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Finalize the grammar rules"/> + <return type="void"/> + </docblock> + </method> + <method name="consume" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Consume the data for processing"/> + <return type="void"/> + </docblock> + <parameter name="data" optional="false" byreference="false" type="string"/> + <parameter name="lexer" optional="false" byreference="false" type="object" class="Parle\Lexer"/> + </method> + <method name="dump" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Dump the grammar"/> + <return type="void"/> + </docblock> + </method> + <method name="errorInfo" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Retrieve the error information"/> + <return type="Parle\ErrorInfo"/> + </docblock> + </method> + <method name="left" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Declare a token with left-associativity"/> + <return type="void"/> + </docblock> + <parameter name="tok" optional="false" byreference="false" type="string"/> + </method> + <method name="nonassoc" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Declare a token with no associativity"/> + <return type="void"/> + </docblock> + <parameter name="tok" optional="false" byreference="false" type="string"/> + </method> + <method name="precedence" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Declare a precedence rule"/> + <return type="void"/> + </docblock> + <parameter name="tok" optional="false" byreference="false" type="string"/> + </method> + <method name="push" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Add a grammar rule"/> + <return type="int"/> + </docblock> + <parameter name="name" optional="false" byreference="false" type="string"/> + <parameter name="rule" optional="false" byreference="false" type="string"/> + </method> + <method name="reset" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Reset parser state"/> + <return type="void"/> + </docblock> + <parameter name="tokenId" optional="true" byreference="false" type="int"/> + </method> + <method name="right" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Declare a token with right-associativity"/> + <return type="void"/> + </docblock> + <parameter name="tok" optional="false" byreference="false" type="string"/> + </method> + <method name="sigil" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Retrieve a matching part of a rule"/> + <return type="string"/> + </docblock> + <parameter name="idx" optional="true" byreference="false" type="int"/> + </method> + <method name="token" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Declare a token"/> + <return type="void"/> + </docblock> + <parameter name="tok" optional="false" byreference="false" type="string"/> + </method> + <method name="tokenId" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get token id"/> + <return type="int"/> + </docblock> + <parameter name="tok" optional="false" byreference="false" type="string"/> + </method> + <method name="trace" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Trace the parser operation"/> + <return type="string"/> + </docblock> + </method> + <method name="validate" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Validate input"/> + <return type="bool"/> + </docblock> + <parameter name="data" optional="false" byreference="false" type="string"/> + <parameter name="lexer" optional="false" byreference="false" type="object" class="Parle\Lexer"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Parle_ParserException.xml b/dependencies/php/classes/Parle_ParserException.xml new file mode 100644 index 0000000000000000000000000000000000000000..7c740feb006fdf4c2994699cd4d186562a5cf4dd --- /dev/null +++ b/dependencies/php/classes/Parle_ParserException.xml @@ -0,0 +1,86 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Parle\ParserException" namespace="Parle" name="ParserException"> + <implements name="Throwable" full="Throwable"/> + <member name="message" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The exception message"/> + <var type="string"/> + </docblock> + </member> + <member name="code" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The exception code"/> + <var type="int"/> + </docblock> + </member> + <member name="file" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The filename where the exception was created"/> + <var type="string"/> + </docblock> + </member> + <member name="line" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The line where the exception was created"/> + <var type="int"/> + </docblock> + </member> + <method name="getMessage" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getPrevious" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="Throwable"/> + </docblock> + </method> + <method name="getCode" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="mixed"/> + </docblock> + </method> + <method name="getFile" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getLine" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + </method> + <method name="getTrace" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + </method> + <method name="getTraceAsString" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="__toString" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="__clone" abstract="false" static="false" final="true"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Parle_RLexer.xml b/dependencies/php/classes/Parle_RLexer.xml new file mode 100644 index 0000000000000000000000000000000000000000..be4c5c0edf2b3c0327430ad3e9900e5618c2ea40 --- /dev/null +++ b/dependencies/php/classes/Parle_RLexer.xml @@ -0,0 +1,151 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Parle\RLexer" namespace="Parle" name="RLexer"> + <constant name="ICASE" value="1"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="DOT_NOT_LF" value="2"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="DOT_NOT_CRLF" value="4"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="SKIP_WS" value="8"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="MATCH_ZERO_LEN" value="16"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <member name="bol" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Start of input flag."/> + <var type="boolean"/> + </docblock> + </member> + <member name="flags" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Lexer flags."/> + <var type="integer"/> + </docblock> + </member> + <member name="state" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Current lexer state, readonly."/> + <var type="integer"/> + </docblock> + </member> + <member name="marker" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Position of the latest token match, readonly."/> + <var type="integer"/> + </docblock> + </member> + <member name="cursor" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Current input offset, readonly."/> + <var type="integer"/> + </docblock> + </member> + <method name="advance" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Process next lexer rule"/> + <return type="void"/> + </docblock> + </method> + <method name="build" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Finalize the lexer rule set"/> + <return type="void"/> + </docblock> + </method> + <method name="callout" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Define token callback"/> + <return type="void"/> + </docblock> + <parameter name="id" optional="false" byreference="false" type="int"/> + <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> + </method> + <method name="consume" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Pass the data for processing"/> + <return type="void"/> + </docblock> + <parameter name="data" optional="false" byreference="false" type="string"/> + </method> + <method name="dump" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Dump the state machine"/> + <return type="void"/> + </docblock> + </method> + <method name="getToken" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Retrieve the current token"/> + <return type="Parle\Token"/> + </docblock> + </method> + <method name="insertMacro" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Insert regex macro"/> + <return type="void"/> + </docblock> + <parameter name="name" optional="false" byreference="false" type="string"/> + <parameter name="regex" optional="false" byreference="false" type="string"/> + </method> + <method name="push" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Add a lexer rule">Push a pattern for lexeme recognition.</description> + <return type="void"/> + </docblock> + <parameter name="regex" optional="false" byreference="false" type="string"/> + <parameter name="id" optional="false" byreference="false" type="int"/> + </method> + <method name="push" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Add a lexer rule">Push a pattern for lexeme recognition.</description> + <return type="void"/> + </docblock> + <parameter name="state" optional="false" byreference="false" type="string"/> + <parameter name="regex" optional="false" byreference="false" type="string"/> + <parameter name="id" optional="false" byreference="false" type="int"/> + <parameter name="newState" optional="false" byreference="false" type="string"/> + </method> + <method name="push" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Add a lexer rule">Push a pattern for lexeme recognition.</description> + <return type="void"/> + </docblock> + <parameter name="state" optional="false" byreference="false" type="string"/> + <parameter name="regex" optional="false" byreference="false" type="string"/> + <parameter name="newState" optional="false" byreference="false" type="string"/> + </method> + <method name="pushState" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Push a new start state"/> + <return type="int"/> + </docblock> + <parameter name="state" optional="false" byreference="false" type="string"/> + </method> + <method name="reset" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Reset lexer"/> + <return type="void"/> + </docblock> + <parameter name="pos" optional="false" byreference="false" type="int"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Parle_RParser.xml b/dependencies/php/classes/Parle_RParser.xml new file mode 100644 index 0000000000000000000000000000000000000000..7ad9488048d8d77ea45f20b826f72389e459ad46 --- /dev/null +++ b/dependencies/php/classes/Parle_RParser.xml @@ -0,0 +1,167 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Parle\RParser" namespace="Parle" name="RParser"> + <constant name="ACTION_ERROR" value="0"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="ACTION_SHIFT" value="1"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="ACTION_REDUCE" value="2"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="ACTION_GOTO" value="3"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="ACTION_ACCEPT" value="4"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="ERROR_SYNTAX" value="0"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="ERROR_NON_ASSOCIATIVE" value="1"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="ERROR_UNKOWN_TOKEN" value="2"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <member name="action" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Current parser action that matches one of the action class constants, readonly."/> + <var type="integer"/> + </docblock> + </member> + <member name="reduceId" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Grammar rule id just processed in the reduce action. The value corresponds either to a token or to a production id. Readonly."/> + <var type="integer"/> + </docblock> + </member> + <method name="advance" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Process next parser rule"/> + <return type="void"/> + </docblock> + </method> + <method name="build" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Finalize the grammar rules"/> + <return type="void"/> + </docblock> + </method> + <method name="consume" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Consume the data for processing"/> + <return type="void"/> + </docblock> + <parameter name="data" optional="false" byreference="false" type="string"/> + <parameter name="rlexer" optional="false" byreference="false" type="object" class="Parle\RLexer"/> + </method> + <method name="dump" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Dump the grammar"/> + <return type="void"/> + </docblock> + </method> + <method name="errorInfo" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Retrieve the error information"/> + <return type="Parle\ErrorInfo"/> + </docblock> + </method> + <method name="left" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Declare a token with left-associativity"/> + <return type="void"/> + </docblock> + <parameter name="tok" optional="false" byreference="false" type="string"/> + </method> + <method name="nonassoc" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Declare a token with no associativity"/> + <return type="void"/> + </docblock> + <parameter name="tok" optional="false" byreference="false" type="string"/> + </method> + <method name="precedence" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Declare a precedence rule"/> + <return type="void"/> + </docblock> + <parameter name="tok" optional="false" byreference="false" type="string"/> + </method> + <method name="push" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Add a grammar rule"/> + <return type="int"/> + </docblock> + <parameter name="name" optional="false" byreference="false" type="string"/> + <parameter name="rule" optional="false" byreference="false" type="string"/> + </method> + <method name="reset" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Reset parser state"/> + <return type="void"/> + </docblock> + <parameter name="tokenId" optional="true" byreference="false" type="int"/> + </method> + <method name="right" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Declare a token with right-associativity"/> + <return type="void"/> + </docblock> + <parameter name="tok" optional="false" byreference="false" type="string"/> + </method> + <method name="sigil" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Retrieve a matching part of a rule"/> + <return type="string"/> + </docblock> + <parameter name="idx" optional="true" byreference="false" type="int"/> + </method> + <method name="token" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Declare a token"/> + <return type="void"/> + </docblock> + <parameter name="tok" optional="false" byreference="false" type="string"/> + </method> + <method name="tokenId" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get token id"/> + <return type="int"/> + </docblock> + <parameter name="tok" optional="false" byreference="false" type="string"/> + </method> + <method name="trace" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Trace the parser operation"/> + <return type="string"/> + </docblock> + </method> + <method name="validate" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Validate input"/> + <return type="bool"/> + </docblock> + <parameter name="data" optional="false" byreference="false" type="string"/> + <parameter name="lexer" optional="false" byreference="false" type="object" class="Parle\RLexer"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Parle_Stack.xml b/dependencies/php/classes/Parle_Stack.xml new file mode 100644 index 0000000000000000000000000000000000000000..da9719b29a2fa6e576a82dc607c913d013112c20 --- /dev/null +++ b/dependencies/php/classes/Parle_Stack.xml @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Parle\Stack" namespace="Parle" name="Stack"> + <member name="empty" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Whether the stack is empty, readonly."/> + <var type="boolean"/> + </docblock> + </member> + <member name="size" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Stack size, readonly."/> + <var type="integer"/> + </docblock> + </member> + <member name="top" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Element on the top of the stack."/> + <var type="mixed"/> + </docblock> + </member> + <method name="pop" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Pop an item from the stack"/> + <return type="void"/> + </docblock> + </method> + <method name="push" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Push an item into the stack"/> + <return type="void"/> + </docblock> + <parameter name="item" optional="false" byreference="false" type="object" class="mixed"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Parle_Token.xml b/dependencies/php/classes/Parle_Token.xml new file mode 100644 index 0000000000000000000000000000000000000000..5c55978de8b1fb93885d9d4b10e53b98e6d9f73f --- /dev/null +++ b/dependencies/php/classes/Parle_Token.xml @@ -0,0 +1,32 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Parle\Token" namespace="Parle" name="Token"> + <constant name="EOI" value="0"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="UNKNOWN" value="-1"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="SKIP" value="-2"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <member name="id" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Token id."/> + <var type="integer"/> + </docblock> + </member> + <member name="value" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Token value."/> + <var type="string"/> + </docblock> + </member> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/ParseError.xml b/dependencies/php/classes/ParseError.xml index fdf6c26a9d35f2111334da8f5d290fdec786a09e..3991e4d822a13f80b0d3a911ffb5493012433d36 100644 --- a/dependencies/php/classes/ParseError.xml +++ b/dependencies/php/classes/ParseError.xml @@ -1,6 +1,34 @@ <?xml version="1.0" encoding="UTF-8" ?> <class xmlns="http://xml.phpdox.net/src" full="ParseError" namespace="" name="ParseError"> - <extends name="Error" full="Error"/> + <extends name="CompileError" full="CompileError"/> + <member name="message" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The error message"/> + <var type="string"/> + </docblock> + </member> + <member name="code" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The error code"/> + <var type="int"/> + </docblock> + </member> + <member name="file" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The filename where the error happened"/> + <var type="string"/> + </docblock> + </member> + <member name="line" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The line where the error happened"/> + <var type="int"/> + </docblock> + </member> <method name="getMessage" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact=""/> diff --git a/dependencies/php/classes/Phar.xml b/dependencies/php/classes/Phar.xml index 39ec3ab481faeaafe0e8d3f22a95a5bb04e49fe2..0d95e63df732ee2b5eb2635fddf5924312f1eb1c 100644 --- a/dependencies/php/classes/Phar.xml +++ b/dependencies/php/classes/Phar.xml @@ -1,6 +1,61 @@ <?xml version="1.0" encoding="UTF-8" ?> <class xmlns="http://xml.phpdox.net/src" full="Phar" namespace="" name="Phar"> <implements name="Countable" full="Countable"/> + <constant name="CURRENT_AS_PATHNAME" value="32"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="CURRENT_AS_FILEINFO" value="0"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="CURRENT_AS_SELF" value="16"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="CURRENT_MODE_MASK" value="240"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="KEY_AS_PATHNAME" value="0"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="KEY_AS_FILENAME" value="256"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="FOLLOW_SYMLINKS" value="512"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="KEY_MODE_MASK" value="3840"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="NEW_CURRENT_AND_KEY" value="256"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="SKIP_DOTS" value="4096"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="UNIX_PATHS" value="8192"> + <docblock> + <var type="integer"/> + </docblock> + </constant> <method name="addEmptyDir" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Add an empty directory to the phar archive">This method requires the php.ini setting phar.readonly to be set to 0 in order to work for Phar objects. Otherwise, a PharException will be thrown.</description> @@ -32,7 +87,7 @@ </method> <method name="buildFromDirectory" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Construct a phar archive from the files within a directory.">This method requires the php.ini setting phar.readonly to be set to 0 in order to work for Phar objects. Otherwise, a PharException will be thrown.</description> + <description compact="Construct a phar archive from the files within a directory">This method requires the php.ini setting phar.readonly to be set to 0 in order to work for Phar objects. Otherwise, a PharException will be thrown.</description> <return type="array"/> </docblock> <parameter name="base_dir" optional="false" byreference="false" type="string"/> @@ -40,7 +95,7 @@ </method> <method name="buildFromIterator" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Construct a phar archive from an iterator.">This method requires the php.ini setting phar.readonly to be set to 0 in order to work for Phar objects. Otherwise, a PharException will be thrown.</description> + <description compact="Construct a phar archive from an iterator">This method requires the php.ini setting phar.readonly to be set to 0 in order to work for Phar objects. Otherwise, a PharException will be thrown.</description> <return type="array"/> </docblock> <parameter name="iter" optional="false" byreference="false" type="object" class="Iterator"/> @@ -170,6 +225,12 @@ <parameter name="files" optional="true" byreference="false" type="object" class="string|array"/> <parameter name="overwrite" optional="true" byreference="false" type="object" class="bool"/> </method> + <method name="getAlias" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get the alias for Phar"/> + <return type="string"/> + </docblock> + </method> <method name="getMetadata" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Returns phar archive meta-data"/> @@ -182,6 +243,12 @@ <return type="bool"/> </docblock> </method> + <method name="getPath" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get the real path to the Phar archive on disk"/> + <return type="string"/> + </docblock> + </method> <method name="getSignature" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Return MD5/SHA1/SHA256/SHA512/OpenSSL signature of a Phar archive"/> @@ -220,7 +287,7 @@ </method> <method name="interceptFileFuncs" abstract="false" static="false" visibility="public" final="true"> <docblock> - <description compact="instructs phar to intercept fopen, file_get_contents, opendir, and all of the stat-related functions">instructs phar to intercept fopen, readfile, file_get_contents, opendir, and all of the stat-related functions. If any of these functions is called from within a phar archive with a relative path, the call is modified to access a file within the phar archive. Absolute paths are assumed to be attempts to load external files from the filesystem.</description> + <description compact="Instructs phar to intercept fopen, file_get_contents, opendir, and all of the stat-related functions">instructs phar to intercept fopen, readfile, file_get_contents, opendir, and all of the stat-related functions. If any of these functions is called from within a phar archive with a relative path, the call is modified to access a file within the phar archive. Absolute paths are assumed to be attempts to load external files from the filesystem.</description> <return type="void"/> </docblock> </method> @@ -290,7 +357,7 @@ </method> <method name="offsetExists" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="determines whether a file exists in the phar">This is an implementation of the ArrayAccess interface allowing direct manipulation of the contents of a Phar archive using array access brackets.</description> + <description compact="Determines whether a file exists in the phar">This is an implementation of the ArrayAccess interface allowing direct manipulation of the contents of a Phar archive using array access brackets.</description> <return type="bool"/> </docblock> <parameter name="offset" optional="false" byreference="false" type="string"/> @@ -304,7 +371,7 @@ </method> <method name="offsetSet" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="set the contents of an internal file to those of an external file">This method requires the php.ini setting phar.readonly to be set to 0 in order to work for Phar objects. Otherwise, a PharException will be thrown.</description> + <description compact="Set the contents of an internal file to those of an external file">This method requires the php.ini setting phar.readonly to be set to 0 in order to work for Phar objects. Otherwise, a PharException will be thrown.</description> <return type="void"/> </docblock> <parameter name="offset" optional="false" byreference="false" type="string"/> @@ -312,7 +379,7 @@ </method> <method name="offsetUnset" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="remove a file from a phar">This method requires the php.ini setting phar.readonly to be set to 0 in order to work for Phar objects. Otherwise, a PharException will be thrown.</description> + <description compact="Remove a file from a phar">This method requires the php.ini setting phar.readonly to be set to 0 in order to work for Phar objects. Otherwise, a PharException will be thrown.</description> <return type="bool"/> </docblock> <parameter name="offset" optional="false" byreference="false" type="string"/> @@ -348,7 +415,7 @@ </method> <method name="setSignatureAlgorithm" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="set the signature algorithm for a phar and apply it.">This method requires the php.ini setting phar.readonly to be set to 0 in order to work for Phar objects. Otherwise, a PharException will be thrown.</description> + <description compact="Set the signature algorithm for a phar and apply it">This method requires the php.ini setting phar.readonly to be set to 0 in order to work for Phar objects. Otherwise, a PharException will be thrown.</description> <return type="void"/> </docblock> <parameter name="sigtype" optional="false" byreference="false" type="int"/> diff --git a/dependencies/php/classes/PharData.xml b/dependencies/php/classes/PharData.xml index 5e9f4ef6e62ee96d630ae0e1710733148dc66813..d3a7a85a85067579767b554d04edeefca7ba38a0 100644 --- a/dependencies/php/classes/PharData.xml +++ b/dependencies/php/classes/PharData.xml @@ -1,10 +1,65 @@ <?xml version="1.0" encoding="UTF-8" ?> <class xmlns="http://xml.phpdox.net/src" full="PharData" namespace="" name="PharData"> - <extends name="Phar" full="Phar"/> + <extends name="RecursiveDirectoryIterator" full="RecursiveDirectoryIterator"/> + <constant name="CURRENT_AS_PATHNAME" value="32"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="CURRENT_AS_FILEINFO" value="0"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="CURRENT_AS_SELF" value="16"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="CURRENT_MODE_MASK" value="240"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="KEY_AS_PATHNAME" value="0"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="KEY_AS_FILENAME" value="256"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="FOLLOW_SYMLINKS" value="512"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="KEY_MODE_MASK" value="3840"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="NEW_CURRENT_AND_KEY" value="256"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="SKIP_DOTS" value="4096"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="UNIX_PATHS" value="8192"> + <docblock> + <var type="integer"/> + </docblock> + </constant> <method name="addEmptyDir" abstract="false" static="false" final="false"> <docblock> <description compact="Add an empty directory to the tar/zip archive"/> - <return type="bool"/> + <return type="void"/> </docblock> <parameter name="dirname" optional="false" byreference="false" type="string"/> </method> @@ -19,7 +74,7 @@ <method name="addFromString" abstract="false" static="false" final="false"> <docblock> <description compact="Add a file from the filesystem to the tar/zip archive"/> - <return type="bool"/> + <return type="void"/> </docblock> <parameter name="localname" optional="false" byreference="false" type="string"/> <parameter name="contents" optional="false" byreference="false" type="string"/> @@ -34,7 +89,7 @@ </method> <method name="buildFromIterator" abstract="false" static="false" final="false"> <docblock> - <description compact="Construct a tar or zip archive from an iterator."/> + <description compact="Construct a tar or zip archive from an iterator"/> <return type="array"/> </docblock> <parameter name="iter" optional="false" byreference="false" type="object" class="Iterator"/> @@ -51,7 +106,7 @@ <method name="compressFiles" abstract="false" static="false" final="false"> <docblock> <description compact="Compresses all files in the current tar/zip archive">For tar-based archives, this method throws a BadMethodCallException, as compression of individual files within a tar archive is not supported by the file format. Use PharData::compress to compress an entire tar-based archive.</description> - <return type="bool"/> + <return type="void"/> </docblock> <parameter name="compression" optional="false" byreference="false" type="int"/> </method> @@ -134,7 +189,7 @@ </method> <method name="offsetSet" abstract="false" static="false" final="false"> <docblock> - <description compact="set the contents of a file within the tar/zip to those of an external file or string"/> + <description compact="Set the contents of a file within the tar/zip to those of an external file or string"/> <return type="void"/> </docblock> <parameter name="offset" optional="false" byreference="false" type="string"/> @@ -142,21 +197,21 @@ </method> <method name="offsetUnset" abstract="false" static="false" final="false"> <docblock> - <description compact="remove a file from a tar/zip archive"/> + <description compact="Remove a file from a tar/zip archive"/> <return type="bool"/> </docblock> <parameter name="offset" optional="false" byreference="false" type="string"/> </method> <method name="setAlias" abstract="false" static="false" final="false"> <docblock> - <description compact="dummy function (Phar::setAlias is not valid for PharData)"/> + <description compact="Dummy function (Phar::setAlias is not valid for PharData)"/> <return type="bool"/> </docblock> <parameter name="alias" optional="false" byreference="false" type="string"/> </method> <method name="setDefaultStub" abstract="false" static="false" final="false"> <docblock> - <description compact="dummy function (Phar::setDefaultStub is not valid for PharData)"/> + <description compact="Dummy function (Phar::setDefaultStub is not valid for PharData)"/> <return type="bool"/> </docblock> <parameter name="index" optional="true" byreference="false" type="string"/> @@ -171,14 +226,14 @@ </method> <method name="setSignatureAlgorithm" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="set the signature algorithm for a phar and apply it.">This method requires the php.ini setting phar.readonly to be set to 0 in order to work for Phar objects. Otherwise, a PharException will be thrown.</description> + <description compact="Set the signature algorithm for a phar and apply it">This method requires the php.ini setting phar.readonly to be set to 0 in order to work for Phar objects. Otherwise, a PharException will be thrown.</description> <return type="void"/> </docblock> <parameter name="sigtype" optional="false" byreference="false" type="int"/> </method> <method name="setStub" abstract="false" static="false" final="false"> <docblock> - <description compact="dummy function (Phar::setStub is not valid for PharData)"/> + <description compact="Dummy function (Phar::setStub is not valid for PharData)"/> <return type="bool"/> </docblock> <parameter name="stub" optional="false" byreference="false" type="string"/> @@ -353,6 +408,12 @@ <parameter name="files" optional="true" byreference="false" type="object" class="string|array"/> <parameter name="overwrite" optional="true" byreference="false" type="object" class="bool"/> </method> + <method name="getAlias" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> <method name="getMetadata" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> @@ -365,6 +426,12 @@ <return type="bool"/> </docblock> </method> + <method name="getPath" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> <method name="getSignature" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> @@ -531,7 +598,7 @@ </method> <method name="setSignatureAlgorithm" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="set the signature algorithm for a phar and apply it.">This method requires the php.ini setting phar.readonly to be set to 0 in order to work for Phar objects. Otherwise, a PharException will be thrown.</description> + <description compact="Set the signature algorithm for a phar and apply it">This method requires the php.ini setting phar.readonly to be set to 0 in order to work for Phar objects. Otherwise, a PharException will be thrown.</description> <return type="void"/> </docblock> <parameter name="sigtype" optional="false" byreference="false" type="int"/> diff --git a/dependencies/php/classes/PharFileInfo.xml b/dependencies/php/classes/PharFileInfo.xml index 95b6ad6927b4d3c5951dbb08e300c402c425b8ef..cee25a49651ade65af04f3aac0413d39e0e0c010 100644 --- a/dependencies/php/classes/PharFileInfo.xml +++ b/dependencies/php/classes/PharFileInfo.xml @@ -46,6 +46,12 @@ <return type="int"/> </docblock> </method> + <method name="getContent" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get the complete file contents of the entry"/> + <return type="string"/> + </docblock> + </method> <method name="getMetadata" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Returns file-specific meta-data saved with a file"/> diff --git a/dependencies/php/classes/Pool.xml b/dependencies/php/classes/Pool.xml index e81846df85cd36a555afaf0964c9cd3dc26d95e8..9df0fea315b07ece418c742a074624be8dbe4cb5 100644 --- a/dependencies/php/classes/Pool.xml +++ b/dependencies/php/classes/Pool.xml @@ -18,12 +18,6 @@ <description compact="references to Workers"/> </docblock> </member> - <member name="work" static="false" visibility="protected"> - <default>null</default> - <docblock> - <description compact="references to Threaded objects submitted to the Pool"/> - </docblock> - </member> <member name="ctor" static="false" visibility="protected"> <default>null</default> <docblock> @@ -48,7 +42,7 @@ <description compact="Creates a new Pool of Workers"/> <return type="Pool"/> </docblock> - <parameter name="size" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="size" optional="false" byreference="false" type="int"/> <parameter name="class" optional="true" byreference="false" type="string"/> <parameter name="ctor" optional="true" byreference="false" type="object" class="array"/> </constructor> @@ -57,7 +51,7 @@ <description compact="Resize the Pool"/> <return type="void"/> </docblock> - <parameter name="size" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="size" optional="false" byreference="false" type="int"/> </method> <method name="shutdown" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/RRDCreator.xml b/dependencies/php/classes/RRDCreator.xml index 1eac2a407dff89327d46f4985e6b918c9ce6850a..c9cfccdb388a29c06cc75dff048c6fef58bc4df2 100644 --- a/dependencies/php/classes/RRDCreator.xml +++ b/dependencies/php/classes/RRDCreator.xml @@ -2,14 +2,14 @@ <class xmlns="http://xml.phpdox.net/src" full="RRDCreator" namespace="" name="RRDCreator"> <method name="addArchive" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Adds RRA - archive of data values for each data source."/> + <description compact="Adds RRA - archive of data values for each data source"/> <return type="void"/> </docblock> <parameter name="description" optional="false" byreference="false" type="string"/> </method> <method name="addDataSource" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Adds data source definition for RRD database."/> + <description compact="Adds data source definition for RRD database"/> <return type="void"/> </docblock> <parameter name="description" optional="false" byreference="false" type="string"/> diff --git a/dependencies/php/classes/RRDGraph.xml b/dependencies/php/classes/RRDGraph.xml index e4d8461585b4724d59e64605719e4c69c005b912..f45264843b9a79447f300a56c52d8550df56368c 100644 --- a/dependencies/php/classes/RRDGraph.xml +++ b/dependencies/php/classes/RRDGraph.xml @@ -15,7 +15,7 @@ </method> <method name="saveVerbose" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Saves the RRD database query into image and returns the verbose information about generated graph. "/> + <description compact="Saves the RRD database query into image and returns the verbose information about generated graph "/> <return type="array"/> </docblock> </method> diff --git a/dependencies/php/classes/RecursiveArrayIterator.xml b/dependencies/php/classes/RecursiveArrayIterator.xml index 35575c21866f5241da92b281a67d4be7d7f89146..6b4ba8aeeefff207f28d44623100a68a205e5bb5 100644 --- a/dependencies/php/classes/RecursiveArrayIterator.xml +++ b/dependencies/php/classes/RecursiveArrayIterator.xml @@ -1,6 +1,16 @@ <?xml version="1.0" encoding="UTF-8" ?> <class xmlns="http://xml.phpdox.net/src" full="RecursiveArrayIterator" namespace="" name="RecursiveArrayIterator"> <implements name="RecursiveIterator" full="RecursiveIterator"/> + <constant name="" value="1"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="2"> + <docblock> + <var type="integer"/> + </docblock> + </constant> <constant name="" value="4"> <docblock> <var type="integer"/> @@ -8,13 +18,13 @@ </constant> <method name="getChildren" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns an iterator for the current entry if it is an array or an object."/> + <description compact="Returns an iterator for the current entry if it is an array or an object"/> <return type="RecursiveArrayIterator"/> </docblock> </method> <method name="hasChildren" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns whether current entry is an array or an object."/> + <description compact="Returns whether current entry is an array or an object"/> <return type="bool"/> </docblock> </method> @@ -96,31 +106,31 @@ <method name="offsetExists" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="void"/> + <return type="bool"/> </docblock> - <parameter name="index" optional="false" byreference="false" type="string"/> + <parameter name="index" optional="false" byreference="false" type="object" class="mixed"/> </method> <method name="offsetGet" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> <return type="mixed"/> </docblock> - <parameter name="index" optional="false" byreference="false" type="string"/> + <parameter name="index" optional="false" byreference="false" type="object" class="mixed"/> </method> <method name="offsetSet" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> <return type="void"/> </docblock> - <parameter name="index" optional="false" byreference="false" type="string"/> - <parameter name="newval" optional="false" byreference="false" type="string"/> + <parameter name="index" optional="false" byreference="false" type="object" class="mixed"/> + <parameter name="newval" optional="false" byreference="false" type="object" class="mixed"/> </method> <method name="offsetUnset" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> <return type="void"/> </docblock> - <parameter name="index" optional="false" byreference="false" type="string"/> + <parameter name="index" optional="false" byreference="false" type="object" class="mixed"/> </method> <method name="rewind" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -153,14 +163,14 @@ <description compact=""/> <return type="void"/> </docblock> - <parameter name="cmp_function" optional="false" byreference="false" type="string"/> + <parameter name="cmp_function" optional="false" byreference="false" type="object" class="callable"/> </method> <method name="uksort" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> <return type="void"/> </docblock> - <parameter name="cmp_function" optional="false" byreference="false" type="string"/> + <parameter name="cmp_function" optional="false" byreference="false" type="object" class="callable"/> </method> <method name="unserialize" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/RecursiveCachingIterator.xml b/dependencies/php/classes/RecursiveCachingIterator.xml index 584659211feb6656156ee1e11c96aa4087782973..f13fb7725b2493413f110cabc858f33756b0df2a 100644 --- a/dependencies/php/classes/RecursiveCachingIterator.xml +++ b/dependencies/php/classes/RecursiveCachingIterator.xml @@ -1,13 +1,43 @@ <?xml version="1.0" encoding="UTF-8" ?> <class xmlns="http://xml.phpdox.net/src" full="RecursiveCachingIterator" namespace="" name="RecursiveCachingIterator"> <implements name="Countable" full="Countable"/> + <constant name="CALL_TOSTRING" value="1"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="CATCH_GET_CHILD" value="16"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="TOSTRING_USE_KEY" value="2"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="TOSTRING_USE_CURRENT" value="4"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="TOSTRING_USE_INNER" value="8"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="FULL_CACHE" value="256"> + <docblock> + <var type="integer"/> + </docblock> + </constant> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Construct"/> <return type="void"/> </docblock> <parameter name="iterator" optional="false" byreference="false" type="object" class="Iterator"/> - <parameter name="flags" optional="true" byreference="false" type="string"/> + <parameter name="flags" optional="true" byreference="false" type="int"/> </constructor> <method name="getChildren" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -82,7 +112,7 @@ <description compact=""/> <return type="void"/> </docblock> - <parameter name="index" optional="false" byreference="false" type="string"/> + <parameter name="index" optional="false" byreference="false" type="object" class="mixed"/> </method> <method name="offsetGet" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -96,8 +126,8 @@ <description compact=""/> <return type="void"/> </docblock> - <parameter name="index" optional="false" byreference="false" type="string"/> - <parameter name="newval" optional="false" byreference="false" type="string"/> + <parameter name="index" optional="false" byreference="false" type="object" class="mixed"/> + <parameter name="newval" optional="false" byreference="false" type="object" class="mixed"/> </method> <method name="offsetUnset" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/RecursiveCallbackFilterIterator.xml b/dependencies/php/classes/RecursiveCallbackFilterIterator.xml index 867de742dd5d54fba7339b25b50461f71fa251ab..d44b5af85d0c2d0801a8f977aa0b5a5967384d6c 100644 --- a/dependencies/php/classes/RecursiveCallbackFilterIterator.xml +++ b/dependencies/php/classes/RecursiveCallbackFilterIterator.xml @@ -24,7 +24,7 @@ <method name="accept" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="string"/> + <return type="bool"/> </docblock> </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/RecursiveDirectoryIterator.xml b/dependencies/php/classes/RecursiveDirectoryIterator.xml index 89a370c71924f7aacca0021edc4937910da19eaa..60c82c989bee68f086d7a69f1ddaa328d8511904 100644 --- a/dependencies/php/classes/RecursiveDirectoryIterator.xml +++ b/dependencies/php/classes/RecursiveDirectoryIterator.xml @@ -1,6 +1,61 @@ <?xml version="1.0" encoding="UTF-8" ?> <class xmlns="http://xml.phpdox.net/src" full="RecursiveDirectoryIterator" namespace="" name="RecursiveDirectoryIterator"> <implements name="SeekableIterator" full="SeekableIterator"/> + <constant name="CURRENT_AS_PATHNAME" value="32"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="CURRENT_AS_FILEINFO" value="0"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="CURRENT_AS_SELF" value="16"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="CURRENT_MODE_MASK" value="240"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="KEY_AS_PATHNAME" value="0"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="KEY_AS_FILENAME" value="256"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="FOLLOW_SYMLINKS" value="512"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="KEY_MODE_MASK" value="3840"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="NEW_CURRENT_AND_KEY" value="256"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="SKIP_DOTS" value="4096"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="UNIX_PATHS" value="8192"> + <docblock> + <var type="integer"/> + </docblock> + </constant> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Constructs a RecursiveDirectoryIterator"/> diff --git a/dependencies/php/classes/RecursiveIteratorIterator.xml b/dependencies/php/classes/RecursiveIteratorIterator.xml index f4ed3e2ad7ba67ea351110847acc52c789444234..980a99b7479f0693abf0058fa795eae0b24439a5 100644 --- a/dependencies/php/classes/RecursiveIteratorIterator.xml +++ b/dependencies/php/classes/RecursiveIteratorIterator.xml @@ -126,7 +126,7 @@ <description compact="Set max depth"/> <return type="void"/> </docblock> - <parameter name="max_depth" optional="true" byreference="false" type="string"/> + <parameter name="max_depth" optional="true" byreference="false" type="int"/> </method> <method name="valid" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/RecursiveRegexIterator.xml b/dependencies/php/classes/RecursiveRegexIterator.xml index 1c003543ddb76089ae6070fa51663375fcde0120..d41a3bea260da3a9752cd182fc342fd5d0df2bb4 100644 --- a/dependencies/php/classes/RecursiveRegexIterator.xml +++ b/dependencies/php/classes/RecursiveRegexIterator.xml @@ -1,9 +1,39 @@ <?xml version="1.0" encoding="UTF-8" ?> <class xmlns="http://xml.phpdox.net/src" full="RecursiveRegexIterator" namespace="" name="RecursiveRegexIterator"> <implements name="RecursiveIterator" full="RecursiveIterator"/> + <constant name="" value="0"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="1"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="2"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="3"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="4"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="1"> + <docblock> + <var type="integer"/> + </docblock> + </constant> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Creates a new RecursiveRegexIterator."/> + <description compact="Creates a new RecursiveRegexIterator"/> <return type="void"/> </docblock> <parameter name="iterator" optional="false" byreference="false" type="object" class="RecursiveIterator"/> @@ -14,13 +44,13 @@ </constructor> <method name="getChildren" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns an iterator for the current entry."/> + <description compact="Returns an iterator for the current entry"/> <return type="RecursiveRegexIterator"/> </docblock> </method> <method name="hasChildren" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns whether an iterator can be obtained for the current entry."/> + <description compact="Returns whether an iterator can be obtained for the current entry"/> <return type="bool"/> </docblock> </method> diff --git a/dependencies/php/classes/RecursiveTreeIterator.xml b/dependencies/php/classes/RecursiveTreeIterator.xml index 6170d07e1aaad279cc6dedd83ea91b4ef134b819..74175a2736b2b5fed2b5fdf092c1f095a6a57538 100644 --- a/dependencies/php/classes/RecursiveTreeIterator.xml +++ b/dependencies/php/classes/RecursiveTreeIterator.xml @@ -1,6 +1,26 @@ <?xml version="1.0" encoding="UTF-8" ?> <class xmlns="http://xml.phpdox.net/src" full="RecursiveTreeIterator" namespace="" name="RecursiveTreeIterator"> <implements name="OuterIterator" full="OuterIterator"/> + <constant name="LEAVES_ONLY" value="0"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="SELF_FIRST" value="1"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="CHILD_FIRST" value="2"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="CATCH_GET_CHILD" value="16"> + <docblock> + <var type="integer"/> + </docblock> + </constant> <constant name="BYPASS_CURRENT" value="4"> <docblock> <var type="integer"/> @@ -102,7 +122,7 @@ <method name="getPostfix" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Get the postfix"/> - <return type="void"/> + <return type="string"/> </docblock> </method> <method name="getPrefix" abstract="false" static="false" visibility="public" final="false"> @@ -135,6 +155,13 @@ <return type="void"/> </docblock> </method> + <method name="setPostfix" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Set postfix"/> + <return type="void"/> + </docblock> + <parameter name="postfix" optional="false" byreference="false" type="string"/> + </method> <method name="setPrefixPart" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Set a part of the prefix"/> @@ -254,7 +281,7 @@ <description compact=""/> <return type="void"/> </docblock> - <parameter name="max_depth" optional="true" byreference="false" type="string"/> + <parameter name="max_depth" optional="true" byreference="false" type="int"/> </method> <method name="valid" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/ReflectionClass.xml b/dependencies/php/classes/ReflectionClass.xml index 27e0550b3b9a10d816c68cf0e211e1ac57389ef2..9cd66a83ce84c5443a9ab16ac4ef8b53184881a7 100644 --- a/dependencies/php/classes/ReflectionClass.xml +++ b/dependencies/php/classes/ReflectionClass.xml @@ -106,7 +106,7 @@ </method> <method name="getMethod" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Gets a ReflectionMethod for a class method."/> + <description compact="Gets a ReflectionMethod for a class method"/> <return type="ReflectionMethod"/> </docblock> <parameter name="name" optional="false" byreference="false" type="string"/> @@ -156,6 +156,19 @@ </docblock> <parameter name="name" optional="false" byreference="false" type="string"/> </method> + <method name="getReflectionConstant" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Gets a ReflectionClassConstant for a class's constant"/> + <return type="ReflectionClassConstant"/> + </docblock> + <parameter name="name" optional="false" byreference="false" type="string"/> + </method> + <method name="getReflectionConstants" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Gets class constants"/> + <return type="array"/> + </docblock> + </method> <method name="getShortName" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Gets short name"/> @@ -283,6 +296,12 @@ <return type="bool"/> </docblock> </method> + <method name="isIterable" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Check whether this class is iterable"/> + <return type="bool"/> + </docblock> + </method> <method name="isIterateable" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Checks if iterateable"/> @@ -310,22 +329,21 @@ </method> <method name="newInstance" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Creates a new class instance from given arguments."/> + <description compact="Creates a new class instance from given arguments"/> <return type="object"/> </docblock> - <parameter name="args" optional="false" byreference="false" type="object" class="mixed"/> <parameter name="..." optional="true" byreference="false" type="object" class="mixed"/> </method> <method name="newInstanceArgs" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Creates a new class instance from given arguments."/> + <description compact="Creates a new class instance from given arguments"/> <return type="object"/> </docblock> <parameter name="args" optional="true" byreference="false" type="object" class="array"/> </method> <method name="newInstanceWithoutConstructor" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Creates a new class instance without invoking the constructor."/> + <description compact="Creates a new class instance without invoking the constructor"/> <return type="object"/> </docblock> </method> @@ -335,11 +353,11 @@ <return type="void"/> </docblock> <parameter name="name" optional="false" byreference="false" type="string"/> - <parameter name="value" optional="false" byreference="false" type="string"/> + <parameter name="value" optional="false" byreference="false" type="object" class="mixed"/> </method> <method name="__toString" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the string representation of the ReflectionClass object."/> + <description compact="Returns the string representation of the ReflectionClass object"/> <return type="string"/> </docblock> </method> diff --git a/dependencies/php/classes/ReflectionClassConstant.xml b/dependencies/php/classes/ReflectionClassConstant.xml new file mode 100644 index 0000000000000000000000000000000000000000..511c290985d0fd2c0289a220d43345532d021bf2 --- /dev/null +++ b/dependencies/php/classes/ReflectionClassConstant.xml @@ -0,0 +1,87 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="ReflectionClassConstant" namespace="" name="ReflectionClassConstant"> + <implements name="Reflector" full="Reflector"/> + <member name="name" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Name of the class constant. Read-only, throws ReflectionException in attempt to write."/> + </docblock> + </member> + <member name="class" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact="Name of the class where the class constant is defined. Read-only, throws ReflectionException in attempt to write."/> + </docblock> + </member> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Constructs a ReflectionClassConstant"/> + <return type="void"/> + </docblock> + <parameter name="class" optional="false" byreference="false" type="object" class="mixed"/> + <parameter name="name" optional="false" byreference="false" type="string"/> + </constructor> + <method name="export" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Export"/> + <return type="string"/> + </docblock> + <parameter name="class" optional="false" byreference="false" type="object" class="mixed"/> + <parameter name="name" optional="false" byreference="false" type="string"/> + <parameter name="return" optional="true" byreference="false" type="object" class="bool"/> + </method> + <method name="getDeclaringClass" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Gets declaring class"/> + <return type="ReflectionClass"/> + </docblock> + </method> + <method name="getDocComment" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Gets doc comments"/> + <return type="string"/> + </docblock> + </method> + <method name="getModifiers" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Gets the class constant modifiers"/> + <return type="int"/> + </docblock> + </method> + <method name="getName" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get name of the constant"/> + <return type="string"/> + </docblock> + </method> + <method name="getValue" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Gets value"/> + <return type="mixed"/> + </docblock> + </method> + <method name="isPrivate" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Checks if class constant is private"/> + <return type="bool"/> + </docblock> + </method> + <method name="isProtected" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Checks if class constant is protected"/> + <return type="bool"/> + </docblock> + </method> + <method name="isPublic" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Checks if class constant is public"/> + <return type="bool"/> + </docblock> + </method> + <method name="__toString" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Returns the string representation of the ReflectionClassConstant object"/> + <return type="string"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/ReflectionFunction.xml b/dependencies/php/classes/ReflectionFunction.xml index 7e7b7b613abd3153cd94634991d6af67558f5314..dff3e16b728d13d95a6152a0e6e64157053b624e 100644 --- a/dependencies/php/classes/ReflectionFunction.xml +++ b/dependencies/php/classes/ReflectionFunction.xml @@ -38,7 +38,6 @@ <description compact="Invokes function"/> <return type="mixed"/> </docblock> - <parameter name="parameter" optional="true" byreference="false" type="object" class="mixed"/> <parameter name="..." optional="true" byreference="false" type="object" class="mixed"/> </method> <method name="invokeArgs" abstract="false" static="false" visibility="public" final="false"> diff --git a/dependencies/php/classes/ReflectionMethod.xml b/dependencies/php/classes/ReflectionMethod.xml index d3e811a85860784a6434fcdff2c39787293dc017..b7101a14ad04c614a814f24b109bf42d0a216619 100644 --- a/dependencies/php/classes/ReflectionMethod.xml +++ b/dependencies/php/classes/ReflectionMethod.xml @@ -53,7 +53,7 @@ </constructor> <method name="export" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Export a reflection method."/> + <description compact="Export a reflection method"/> <return type="string"/> </docblock> <parameter name="class" optional="false" byreference="false" type="string"/> @@ -69,7 +69,7 @@ </method> <method name="getDeclaringClass" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Gets declaring class for the reflected method."/> + <description compact="Gets declaring class for the reflected method"/> <return type="ReflectionClass"/> </docblock> </method> @@ -81,7 +81,7 @@ </method> <method name="getPrototype" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Gets the method prototype (if there is one)."/> + <description compact="Gets the method prototype (if there is one)"/> <return type="ReflectionMethod"/> </docblock> </method> @@ -91,7 +91,6 @@ <return type="mixed"/> </docblock> <parameter name="object" optional="false" byreference="false" type="object" class="object"/> - <parameter name="parameter" optional="true" byreference="false" type="object" class="mixed"/> <parameter name="..." optional="true" byreference="false" type="object" class="mixed"/> </method> <method name="invokeArgs" abstract="false" static="false" visibility="public" final="false"> @@ -159,7 +158,7 @@ </method> <method name="__toString" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the string representation of the Reflection method object."/> + <description compact="Returns the string representation of the Reflection method object"/> <return type="string"/> </docblock> </method> diff --git a/dependencies/php/classes/ReflectionNamedType.xml b/dependencies/php/classes/ReflectionNamedType.xml new file mode 100644 index 0000000000000000000000000000000000000000..a3c98f9c8ff985a069e684af06cb31d9362fda5d --- /dev/null +++ b/dependencies/php/classes/ReflectionNamedType.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="ReflectionNamedType" namespace="" name="ReflectionNamedType"> + <extends name="ReflectionType" full="ReflectionType"/> + <method name="getName" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get the text of the type hint"/> + <return type="string"/> + </docblock> + </method> + <method name="allowsNull" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + </method> + <method name="isBuiltin" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + </method> + <method name="__toString" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/ReflectionObject.xml b/dependencies/php/classes/ReflectionObject.xml index 326cc16d1944f46607cd817dfa92363214f00d4a..6b9ef0cb521398c03ebe31064cb0e08b60fa6a5a 100644 --- a/dependencies/php/classes/ReflectionObject.xml +++ b/dependencies/php/classes/ReflectionObject.xml @@ -171,6 +171,19 @@ </docblock> <parameter name="name" optional="false" byreference="false" type="string"/> </method> + <method name="getReflectionConstant" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="ReflectionClassConstant"/> + </docblock> + <parameter name="name" optional="false" byreference="false" type="string"/> + </method> + <method name="getReflectionConstants" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + </method> <method name="getShortName" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> @@ -298,6 +311,12 @@ <return type="bool"/> </docblock> </method> + <method name="isIterable" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + </method> <method name="isIterateable" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> @@ -328,7 +347,6 @@ <description compact=""/> <return type="object"/> </docblock> - <parameter name="args" optional="false" byreference="false" type="object" class="mixed"/> <parameter name="..." optional="true" byreference="false" type="object" class="mixed"/> </method> <method name="newInstanceArgs" abstract="false" static="false" visibility="public" final="false"> @@ -350,7 +368,7 @@ <return type="void"/> </docblock> <parameter name="name" optional="false" byreference="false" type="string"/> - <parameter name="value" optional="false" byreference="false" type="string"/> + <parameter name="value" optional="false" byreference="false" type="object" class="mixed"/> </method> <method name="__toString" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/ReflectionParameter.xml b/dependencies/php/classes/ReflectionParameter.xml index 5ae73d59394bc519e574636eac77b1f606f49171..443587bbcdab85f97c128b47c35d5ea784cf955e 100644 --- a/dependencies/php/classes/ReflectionParameter.xml +++ b/dependencies/php/classes/ReflectionParameter.xml @@ -116,7 +116,7 @@ </method> <method name="isDefaultValueConstant" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns whether the default value of this parameter is constant"/> + <description compact="Returns whether the default value of this parameter is a constant"/> <return type="bool"/> </docblock> </method> diff --git a/dependencies/php/classes/ReflectionZendExtension.xml b/dependencies/php/classes/ReflectionZendExtension.xml index 6c9549f6fa145143492905a7f8fa9d3ada5397b2..972b4b04001dcae0a54ae56160f2124cb225b857 100644 --- a/dependencies/php/classes/ReflectionZendExtension.xml +++ b/dependencies/php/classes/ReflectionZendExtension.xml @@ -26,7 +26,7 @@ <return type="string"/> </docblock> <parameter name="name" optional="false" byreference="false" type="string"/> - <parameter name="return" optional="true" byreference="false" type="string"/> + <parameter name="return" optional="true" byreference="false" type="object" class="bool"/> </method> <method name="getAuthor" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/RegexIterator.xml b/dependencies/php/classes/RegexIterator.xml index 41d6e9e63b0e88501974e42c209c1b3e360c04c6..54206fab390a14e36228d3bee99d57a15cddb58c 100644 --- a/dependencies/php/classes/RegexIterator.xml +++ b/dependencies/php/classes/RegexIterator.xml @@ -56,13 +56,13 @@ </method> <method name="getMode" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns operation mode."/> + <description compact="Returns operation mode"/> <return type="int"/> </docblock> </method> <method name="getPregFlags" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the regular expression flags."/> + <description compact="Returns the regular expression flags"/> <return type="int"/> </docblock> </method> @@ -74,21 +74,21 @@ </method> <method name="setFlags" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Sets the flags."/> + <description compact="Sets the flags"/> <return type="void"/> </docblock> <parameter name="flags" optional="false" byreference="false" type="int"/> </method> <method name="setMode" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Sets the operation mode."/> + <description compact="Sets the operation mode"/> <return type="void"/> </docblock> <parameter name="mode" optional="false" byreference="false" type="int"/> </method> <method name="setPregFlags" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Sets the regular expression flags."/> + <description compact="Sets the regular expression flags"/> <return type="void"/> </docblock> <parameter name="preg_flags" optional="false" byreference="false" type="int"/> diff --git a/dependencies/php/classes/ResourceBundle.xml b/dependencies/php/classes/ResourceBundle.xml index 228320d2b5d2bdf9837d96a48bacf438a83c2449..d5fcf831122617eb8c4b5ecdd4c52409af706fe7 100644 --- a/dependencies/php/classes/ResourceBundle.xml +++ b/dependencies/php/classes/ResourceBundle.xml @@ -26,13 +26,13 @@ </method> <method name="getErrorCode" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Get bundle's last error code.">Object oriented style</description> + <description compact="Get bundle's last error code">Object oriented style</description> <return type="int"/> </docblock> </method> <method name="getErrorMessage" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Get bundle's last error message.">Object oriented style</description> + <description compact="Get bundle's last error message">Object oriented style</description> <return type="string"/> </docblock> </method> diff --git a/dependencies/php/classes/SQLite3.xml b/dependencies/php/classes/SQLite3.xml index bab8bdd93ac568385f1a9cbc0874cf29c4675505..30de60108b6ebd1ee4c9d720f33cf0022944a801 100644 --- a/dependencies/php/classes/SQLite3.xml +++ b/dependencies/php/classes/SQLite3.xml @@ -111,15 +111,16 @@ <parameter name="flags" optional="true" byreference="false" type="int"/> <parameter name="encryption_key" optional="true" byreference="false" type="string"/> </method> - <method name="open" abstract="false" static="false" visibility="public" final="false"> + <method name="openBlob" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Opens an SQLite database"/> + <description compact="Opens a stream resource to read a BLOB">Opens a stream resource to read or write a BLOB, which would be selected by:</description> <return type="resource"/> </docblock> <parameter name="table" optional="false" byreference="false" type="string"/> <parameter name="column" optional="false" byreference="false" type="string"/> <parameter name="rowid" optional="false" byreference="false" type="int"/> <parameter name="dbname" optional="true" byreference="false" type="string"/> + <parameter name="flags" optional="true" byreference="false" type="int"/> </method> <method name="prepare" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/SQLite3Stmt.xml b/dependencies/php/classes/SQLite3Stmt.xml index e18eac217e6637c014801afb880b560bb4b9aff4..2ec3e038ae9597c09d3c0deeae002123eee43fbd 100644 --- a/dependencies/php/classes/SQLite3Stmt.xml +++ b/dependencies/php/classes/SQLite3Stmt.xml @@ -11,7 +11,7 @@ </method> <method name="bindValue" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Binds the value of a parameter to a statement variable"/> + <description compact="Binds the value of a parameter to a statement variable">Binds the value of a parameter to a statement variable.</description> <return type="bool"/> </docblock> <parameter name="sql_param" optional="false" byreference="false" type="object" class="mixed"/> @@ -20,7 +20,7 @@ </method> <method name="clear" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Clears all current bound parameters"/> + <description compact="Clears all current bound parameters">Clears all current bound parameters (sets them to NULL).</description> <return type="bool"/> </docblock> </method> @@ -36,6 +36,13 @@ <return type="SQLite3Result"/> </docblock> </method> + <method name="getSQL" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get the SQL of the statement"/> + <return type="string"/> + </docblock> + <parameter name="expanded" optional="true" byreference="false" type="object" class="bool"/> + </method> <method name="paramCount" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Returns the number of parameters within the prepared statement"/> @@ -44,7 +51,7 @@ </method> <method name="readOnly" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=""/> + <description compact="Returns whether a statement is definitely read only"/> <return type="bool"/> </docblock> </method> diff --git a/dependencies/php/classes/SWFButton.xml b/dependencies/php/classes/SWFButton.xml index 1893627af45bed24f0b25cece7d13fdfaa17c000..9a599d5e40b08469c80b8d1a92e9c6c2c9977929 100644 --- a/dependencies/php/classes/SWFButton.xml +++ b/dependencies/php/classes/SWFButton.xml @@ -53,7 +53,7 @@ </method> <method name="setMenu" abstract="false" static="false" final="false"> <docblock> - <description compact="enable track as menu button behaviour"/> + <description compact="Enable track as menu button behaviour"/> <return type="void"/> </docblock> <parameter name="flag" optional="false" byreference="false" type="int"/> diff --git a/dependencies/php/classes/SWFText.xml b/dependencies/php/classes/SWFText.xml index 8d8672c33ae64632fba77a81de06ba72ce1dee73..d0847b6cdd59abe40fc12d577681d0e31bd9c23d 100644 --- a/dependencies/php/classes/SWFText.xml +++ b/dependencies/php/classes/SWFText.xml @@ -40,7 +40,7 @@ </method> <method name="getUTF8Width" abstract="false" static="false" final="false"> <docblock> - <description compact="calculates the width of the given string in this text objects current font and size"/> + <description compact="Calculates the width of the given string in this text objects current font and size"/> <return type="float"/> </docblock> <parameter name="string" optional="false" byreference="false" type="string"/> diff --git a/dependencies/php/classes/SWFTextField.xml b/dependencies/php/classes/SWFTextField.xml index 6ab1d44fa695da3352622cd0f98be501a444105d..2373ed6320a5a9d9b7939a0eaf23fb63a40e6c0a 100644 --- a/dependencies/php/classes/SWFTextField.xml +++ b/dependencies/php/classes/SWFTextField.xml @@ -2,7 +2,7 @@ <class xmlns="http://xml.phpdox.net/src" full="SWFTextField" namespace="" name="SWFTextField"> <method name="addChars" abstract="false" static="false" final="false"> <docblock> - <description compact="adds characters to a font that will be available within a textfield"/> + <description compact="Adds characters to a font that will be available within a textfield"/> <return type="void"/> </docblock> <parameter name="chars" optional="false" byreference="false" type="string"/> diff --git a/dependencies/php/classes/SeasLog.xml b/dependencies/php/classes/SeasLog.xml new file mode 100644 index 0000000000000000000000000000000000000000..14a8c737639faa90f74d0e13b7a675df663dbcdb --- /dev/null +++ b/dependencies/php/classes/SeasLog.xml @@ -0,0 +1,205 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="SeasLog" namespace="" name="SeasLog"> + <method name="alert" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Record alert log information">Record alert log information. "ALERT" - Action must be taken immediately. Immediate attention should be given to relevant personnel for emergency repairs.</description> + <return type="bool"/> + </docblock> + <parameter name="message" optional="false" byreference="false" type="string"/> + <parameter name="content" optional="true" byreference="false" type="object" class="array"/> + <parameter name="logger" optional="true" byreference="false" type="string"/> + </method> + <method name="analyzerCount" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get log count by level, log_path and key_word"/> + <return type="mixed"/> + </docblock> + <parameter name="level" optional="false" byreference="false" type="string"/> + <parameter name="log_path" optional="true" byreference="false" type="string"/> + <parameter name="key_word" optional="true" byreference="false" type="string"/> + </method> + <method name="analyzerDetail" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get log detail by level, log_path, key_word, start, limit, order"/> + <return type="mixed"/> + </docblock> + <parameter name="level" optional="false" byreference="false" type="string"/> + <parameter name="log_path" optional="true" byreference="false" type="string"/> + <parameter name="key_word" optional="true" byreference="false" type="string"/> + <parameter name="start" optional="true" byreference="false" type="int"/> + <parameter name="limit" optional="true" byreference="false" type="int"/> + <parameter name="order" optional="true" byreference="false" type="int"/> + </method> + <method name="closeLoggerStream" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Manually release stream flow from logger"/> + <return type="bool"/> + </docblock> + <parameter name="model" optional="false" byreference="false" type="int"/> + <parameter name="logger" optional="false" byreference="false" type="string"/> + </method> + <method name="critical" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Record critical log information">Record critical log information. "CRITICAL" - Critical conditions.Need to be repaired immediately, and the program component is unavailable.</description> + <return type="bool"/> + </docblock> + <parameter name="message" optional="false" byreference="false" type="string"/> + <parameter name="content" optional="true" byreference="false" type="object" class="array"/> + <parameter name="logger" optional="true" byreference="false" type="string"/> + </method> + <method name="debug" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Record debug log information">Record debug log information. "DEBUG" - Detailed debug information.Fine-grained information events.</description> + <return type="bool"/> + </docblock> + <parameter name="message" optional="false" byreference="false" type="string"/> + <parameter name="content" optional="true" byreference="false" type="object" class="array"/> + <parameter name="logger" optional="true" byreference="false" type="string"/> + </method> + <destructor name="__destruct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Description"/> + <return type="void"/> + </docblock> + </destructor> + <method name="emergency" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Record emergency log information">Record emergency log information. "EMERGENCY" - System is unusable.</description> + <return type="bool"/> + </docblock> + <parameter name="message" optional="false" byreference="false" type="string"/> + <parameter name="content" optional="true" byreference="false" type="object" class="array"/> + <parameter name="logger" optional="true" byreference="false" type="string"/> + </method> + <method name="error" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Record error log information">Record error log information. "ERROR" - Runtime errors that do not require immediate action but should typically.</description> + <return type="bool"/> + </docblock> + <parameter name="message" optional="false" byreference="false" type="string"/> + <parameter name="content" optional="true" byreference="false" type="object" class="array"/> + <parameter name="logger" optional="true" byreference="false" type="string"/> + </method> + <method name="flushBuffer" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Flush logs buffer, dump to appender file, or send to remote api with tcp/udp">Flush logs buffer by seaslog.appender: dump to file, or send to remote api with tcp/udp. See also: seaslog.appender_retry seaslog.remote_host seaslog.remote_port</description> + <return type="bool"/> + </docblock> + </method> + <method name="getBasePath" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getBuffer" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get the logs buffer in memory as array"/> + <return type="array"/> + </docblock> + </method> + <method name="getBufferEnabled" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Determin if buffer enabled"/> + <return type="bool"/> + </docblock> + </method> + <method name="getDatetimeFormat" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get SeasLog datetime format style"/> + <return type="string"/> + </docblock> + </method> + <method name="getLastLogger" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get SeasLog last logger path"/> + <return type="string"/> + </docblock> + </method> + <method name="getRequestID" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get SeasLog request_id differentiated requests"/> + <return type="string"/> + </docblock> + </method> + <method name="getRequestVariable" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get SeasLog request variable"/> + <return type="bool"/> + </docblock> + <parameter name="key" optional="false" byreference="false" type="int"/> + </method> + <method name="info" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Record info log information">Record info log information. "INFO" - Interesting events.Emphasizes the running process of the application.</description> + <return type="bool"/> + </docblock> + <parameter name="message" optional="false" byreference="false" type="string"/> + <parameter name="content" optional="true" byreference="false" type="object" class="array"/> + <parameter name="logger" optional="true" byreference="false" type="string"/> + </method> + <method name="log" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="The Common Record Log Function"/> + <return type="bool"/> + </docblock> + <parameter name="level" optional="false" byreference="false" type="string"/> + <parameter name="message" optional="true" byreference="false" type="string"/> + <parameter name="content" optional="true" byreference="false" type="object" class="array"/> + <parameter name="logger" optional="true" byreference="false" type="string"/> + </method> + <method name="notice" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Record notice log information">Record notice log information. "NOTICE" - Normal but significant events.Information that is more important than the INFO level during execution.</description> + <return type="bool"/> + </docblock> + <parameter name="message" optional="false" byreference="false" type="string"/> + <parameter name="content" optional="true" byreference="false" type="object" class="array"/> + <parameter name="logger" optional="true" byreference="false" type="string"/> + </method> + <method name="setBasePath" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Set SeasLog base path"/> + <return type="bool"/> + </docblock> + <parameter name="base_path" optional="false" byreference="false" type="string"/> + </method> + <method name="setDatetimeFormat" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Set SeasLog datetime format style"/> + <return type="bool"/> + </docblock> + <parameter name="format" optional="false" byreference="false" type="string"/> + </method> + <method name="setLogger" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Set SeasLog logger name"/> + <return type="bool"/> + </docblock> + <parameter name="logger" optional="false" byreference="false" type="string"/> + </method> + <method name="setRequestID" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Set SeasLog request_id differentiated requests"/> + <return type="bool"/> + </docblock> + <parameter name="request_id" optional="false" byreference="false" type="string"/> + </method> + <method name="setRequestVariable" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Manually set SeasLog request variable"/> + <return type="bool"/> + </docblock> + <parameter name="key" optional="false" byreference="false" type="int"/> + <parameter name="value" optional="false" byreference="false" type="string"/> + </method> + <method name="warning" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Record warning log information">Record warning log information. "WARNING" - Exceptional occurrences that are not errors. Potentially aberrant information that needs attention and needs to be repaired.</description> + <return type="bool"/> + </docblock> + <parameter name="message" optional="false" byreference="false" type="string"/> + <parameter name="content" optional="true" byreference="false" type="object" class="array"/> + <parameter name="logger" optional="true" byreference="false" type="string"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/SessionHandler.xml b/dependencies/php/classes/SessionHandler.xml index 0f2ad85350c68e93496e217d1dde69fe34675055..e416dd83fa16f5fb2e085e6adbd4431886078305 100644 --- a/dependencies/php/classes/SessionHandler.xml +++ b/dependencies/php/classes/SessionHandler.xml @@ -23,7 +23,7 @@ <method name="gc" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Cleanup old sessions">Cleans up expired sessions. Called randomly by PHP internally when a session starts or when session_start is invoked. The frequency this is called is based on the session.gc_divisor and session.gc_probability configuration directives.</description> - <return type="bool"/> + <return type="int"/> </docblock> <parameter name="maxlifetime" optional="false" byreference="false" type="int"/> </method> diff --git a/dependencies/php/classes/SimpleXMLIterator.xml b/dependencies/php/classes/SimpleXMLIterator.xml index b8b62a0fe6b76d8a5c933d3d62757d29897c035e..e8153ed9222942b16124f5c0eb965e39f32e16f4 100644 --- a/dependencies/php/classes/SimpleXMLIterator.xml +++ b/dependencies/php/classes/SimpleXMLIterator.xml @@ -15,7 +15,7 @@ </method> <method name="hasChildren" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Checks whether the current element has sub elements."/> + <description compact="Checks whether the current element has sub elements"/> <return type="bool"/> </docblock> </method> diff --git a/dependencies/php/classes/SoapClient.xml b/dependencies/php/classes/SoapClient.xml index 64eaf1e187a936702f0b68ab91cec374190581bd..278a7ea9e728dcb6f513b583fa388fcce8b5a0be 100644 --- a/dependencies/php/classes/SoapClient.xml +++ b/dependencies/php/classes/SoapClient.xml @@ -6,16 +6,16 @@ <return type="mixed"/> </docblock> <parameter name="function_name" optional="false" byreference="false" type="string"/> - <parameter name="arguments" optional="false" byreference="false" type="string"/> + <parameter name="arguments" optional="false" byreference="false" type="object" class="array"/> </method> - <method name="SoapClient" abstract="false" static="false" visibility="public" final="false"> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="SoapClient constructor"/> <return type="void"/> </docblock> <parameter name="wsdl" optional="false" byreference="false" type="object" class="mixed"/> <parameter name="options" optional="true" byreference="false" type="object" class="array"/> - </method> + </constructor> <method name="__doRequest" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Performs a SOAP request">Performs SOAP request over HTTP.</description> @@ -27,6 +27,12 @@ <parameter name="version" optional="false" byreference="false" type="int"/> <parameter name="one_way" optional="true" byreference="false" type="int"/> </method> + <method name="__getCookies" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get list of cookies"/> + <return type="array"/> + </docblock> + </method> <method name="__getFunctions" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Returns list of available SOAP functions">Returns an array of functions described in the WSDL for the Web service.</description> diff --git a/dependencies/php/classes/SoapServer.xml b/dependencies/php/classes/SoapServer.xml index 4aba3eebf991096e234d68afb63bdb26158129a3..f5d00b6ebacc90bea8569501eab3728ef134b991 100644 --- a/dependencies/php/classes/SoapServer.xml +++ b/dependencies/php/classes/SoapServer.xml @@ -52,7 +52,6 @@ <return type="void"/> </docblock> <parameter name="class_name" optional="false" byreference="false" type="string"/> - <parameter name="args" optional="true" byreference="false" type="object" class="mixed"/> <parameter name="..." optional="true" byreference="false" type="object" class="mixed"/> </method> <method name="setObject" abstract="false" static="false" visibility="public" final="false"> diff --git a/dependencies/php/classes/SolrClient.xml b/dependencies/php/classes/SolrClient.xml index 71a33105fe3e3ae7b686158ebf068921669b40a1..fd3f60239544988ea3e90157c502f6ce30b24b86 100644 --- a/dependencies/php/classes/SolrClient.xml +++ b/dependencies/php/classes/SolrClient.xml @@ -130,14 +130,14 @@ </destructor> <method name="getById" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Get Document By Id. Utilizes Solr Realtime Get (RTG)."/> + <description compact="Get Document By Id. Utilizes Solr Realtime Get (RTG)"/> <return type="SolrQueryResponse"/> </docblock> <parameter name="id" optional="false" byreference="false" type="string"/> </method> <method name="getByIds" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Get Documents by their Ids. Utilizes Solr Realtime Get (RTG)."/> + <description compact="Get Documents by their Ids. Utilizes Solr Realtime Get (RTG)"/> <return type="SolrQueryResponse"/> </docblock> <parameter name="ids" optional="false" byreference="false" type="object" class="array"/> diff --git a/dependencies/php/classes/SolrCollapseFunction.xml b/dependencies/php/classes/SolrCollapseFunction.xml index 74bc77d5c6afb988967a20323be21769f5a36875..c2b0d7896a2dcf60e9dce326b0d06a37d5587f63 100644 --- a/dependencies/php/classes/SolrCollapseFunction.xml +++ b/dependencies/php/classes/SolrCollapseFunction.xml @@ -24,7 +24,7 @@ </constructor> <method name="getField" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the field that is being collapsed on."/> + <description compact="Returns the field that is being collapsed on"/> <return type="string"/> </docblock> </method> @@ -55,7 +55,7 @@ <method name="getSize" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Returns size parameter"/> - <return type="integer"/> + <return type="int"/> </docblock> </method> <method name="setField" abstract="false" static="false" visibility="public" final="false"> @@ -74,7 +74,7 @@ </method> <method name="setMax" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Selects the group heads by the max value of a numeric field or function query."/> + <description compact="Selects the group heads by the max value of a numeric field or function query"/> <return type="SolrCollapseFunction"/> </docblock> <parameter name="max" optional="false" byreference="false" type="string"/> @@ -95,10 +95,10 @@ </method> <method name="setSize" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Sets the initial size of the collapse data structures when collapsing on a numeric field only."/> + <description compact="Sets the initial size of the collapse data structures when collapsing on a numeric field only"/> <return type="SolrCollapseFunction"/> </docblock> - <parameter name="size" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="size" optional="false" byreference="false" type="int"/> </method> <method name="__toString" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/SolrDisMaxQuery.xml b/dependencies/php/classes/SolrDisMaxQuery.xml index bb3a273a97158d16868383f3e867777ca5c65137..dce15deda0f216f5b602af19dded4c6bc3200a75 100644 --- a/dependencies/php/classes/SolrDisMaxQuery.xml +++ b/dependencies/php/classes/SolrDisMaxQuery.xml @@ -147,7 +147,7 @@ </method> <method name="setBoostFunction" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Sets a Boost Function (bf parameter).">Sets Boost Function (bf parameter).</description> + <description compact="Sets a Boost Function (bf parameter)">Sets Boost Function (bf parameter).</description> <return type="SolrDisMaxQuery"/> </docblock> <parameter name="function" optional="false" byreference="false" type="string"/> @@ -189,7 +189,7 @@ </method> <method name="setQueryPhraseSlop" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="specifies the amount of slop permitted on phrase queries explicitly included in the user's query string (qf parameter)">The Query Phrase Slop is the amount of slop permitted on phrase queries explicitly included in the user's query string with the qf parameter.</description> + <description compact="Specifies the amount of slop permitted on phrase queries explicitly included in the user's query string (qf parameter)">The Query Phrase Slop is the amount of slop permitted on phrase queries explicitly included in the user's query string with the qf parameter.</description> <return type="SolrDisMaxQuery"/> </docblock> <parameter name="slop" optional="false" byreference="false" type="string"/> @@ -319,7 +319,7 @@ <return type="SolrQuery"/> </docblock> <parameter name="field" optional="false" byreference="false" type="string"/> - <parameter name="order" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="order" optional="true" byreference="false" type="int"/> </method> <method name="addHighlightField" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -406,7 +406,7 @@ <method name="getExpandRows" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="integer"/> + <return type="int"/> </docblock> </method> <method name="getExpandSortFields" abstract="false" static="false" visibility="public" final="false"> @@ -544,7 +544,7 @@ <method name="getGroupCachePercent" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="integer"/> + <return type="int"/> </docblock> </method> <method name="getGroupFacet" abstract="false" static="false" visibility="public" final="false"> @@ -574,7 +574,7 @@ <method name="getGroupLimit" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="integer"/> + <return type="int"/> </docblock> </method> <method name="getGroupMain" abstract="false" static="false" visibility="public" final="false"> @@ -592,7 +592,7 @@ <method name="getGroupOffset" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="integer"/> + <return type="int"/> </docblock> </method> <method name="getGroupQueries" abstract="false" static="false" visibility="public" final="false"> @@ -1048,7 +1048,7 @@ <description compact=""/> <return type="SolrQuery"/> </docblock> - <parameter name="value" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="value" optional="false" byreference="false" type="int"/> </method> <method name="setExplainOther" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -1172,7 +1172,7 @@ <description compact=""/> <return type="SolrQuery"/> </docblock> - <parameter name="percent" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="percent" optional="false" byreference="false" type="int"/> </method> <method name="setGroupFacet" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -1193,7 +1193,7 @@ <description compact=""/> <return type="SolrQuery"/> </docblock> - <parameter name="value" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="value" optional="false" byreference="false" type="int"/> </method> <method name="setGroupMain" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -1214,7 +1214,7 @@ <description compact=""/> <return type="SolrQuery"/> </docblock> - <parameter name="value" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="value" optional="false" byreference="false" type="int"/> </method> <method name="setGroupTruncate" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/SolrDocument.xml b/dependencies/php/classes/SolrDocument.xml index 265bcfcd5dc68f9fe622198a2ab1314bce59a5de..a7af750c24061c05e25e14343d319365c1c76132 100644 --- a/dependencies/php/classes/SolrDocument.xml +++ b/dependencies/php/classes/SolrDocument.xml @@ -99,7 +99,7 @@ <method name="getChildDocumentsCount" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Returns the number of child documents"/> - <return type="integer"/> + <return type="int"/> </docblock> </method> <method name="getField" abstract="false" static="false" visibility="public" final="false"> diff --git a/dependencies/php/classes/SolrInputDocument.xml b/dependencies/php/classes/SolrInputDocument.xml index 522978b54cd70f37d7b1124d48f1f6f20b9589f7..0ea314bd48555e730c46572547ff947770e98608 100644 --- a/dependencies/php/classes/SolrInputDocument.xml +++ b/dependencies/php/classes/SolrInputDocument.xml @@ -106,7 +106,7 @@ <method name="getChildDocumentsCount" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Returns the number of child documents"/> - <return type="integer"/> + <return type="int"/> </docblock> </method> <method name="getField" abstract="false" static="false" visibility="public" final="false"> @@ -138,7 +138,7 @@ <method name="hasChildDocuments" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Returns true if the document has any child documents"/> - <return type="boolean"/> + <return type="bool"/> </docblock> </method> <method name="merge" abstract="false" static="false" visibility="public" final="false"> diff --git a/dependencies/php/classes/SolrQuery.xml b/dependencies/php/classes/SolrQuery.xml index ba11d3aaaf2acd15f7edcf65569be34f5f27cbb3..323e9066ba991c0c8a2172d1b2f7b0c73959183b 100644 --- a/dependencies/php/classes/SolrQuery.xml +++ b/dependencies/php/classes/SolrQuery.xml @@ -33,14 +33,14 @@ </constant> <method name="addExpandFilterQuery" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Overrides main filter query, determines which documents to include in the main group."/> + <description compact="Overrides main filter query, determines which documents to include in the main group"/> <return type="SolrQuery"/> </docblock> <parameter name="fq" optional="false" byreference="false" type="string"/> </method> <method name="addExpandSortField" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Orders the documents within the expanded groups (expand.sort parameter)."/> + <description compact="Orders the documents within the expanded groups (expand.sort parameter)"/> <return type="SolrQuery"/> </docblock> <parameter name="field" optional="false" byreference="false" type="string"/> @@ -91,32 +91,32 @@ </method> <method name="addGroupField" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Add a field to be used to group results."/> + <description compact="Add a field to be used to group results"/> <return type="SolrQuery"/> </docblock> <parameter name="value" optional="false" byreference="false" type="string"/> </method> <method name="addGroupFunction" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Allows grouping results based on the unique values of a function query (group.func parameter)."/> + <description compact="Allows grouping results based on the unique values of a function query (group.func parameter)"/> <return type="SolrQuery"/> </docblock> <parameter name="value" optional="false" byreference="false" type="string"/> </method> <method name="addGroupQuery" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Allows grouping of documents that match the given query."/> + <description compact="Allows grouping of documents that match the given query"/> <return type="SolrQuery"/> </docblock> <parameter name="value" optional="false" byreference="false" type="string"/> </method> <method name="addGroupSortField" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Add a group sort field (group.sort parameter)."/> + <description compact="Add a group sort field (group.sort parameter)"/> <return type="SolrQuery"/> </docblock> <parameter name="field" optional="false" byreference="false" type="string"/> - <parameter name="order" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="order" optional="true" byreference="false" type="int"/> </method> <method name="addHighlightField" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -203,7 +203,7 @@ <method name="getExpandRows" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Returns The number of rows to display in each group (expand.rows)"/> - <return type="integer"/> + <return type="int"/> </docblock> </method> <method name="getExpandSortFields" abstract="false" static="false" visibility="public" final="false"> @@ -341,7 +341,7 @@ <method name="getGroupCachePercent" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Returns group cache percent value"/> - <return type="integer"/> + <return type="int"/> </docblock> </method> <method name="getGroupFacet" abstract="false" static="false" visibility="public" final="false"> @@ -371,7 +371,7 @@ <method name="getGroupLimit" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Returns the group.limit value"/> - <return type="integer"/> + <return type="int"/> </docblock> </method> <method name="getGroupMain" abstract="false" static="false" visibility="public" final="false"> @@ -389,7 +389,7 @@ <method name="getGroupOffset" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Returns the group.offset value"/> - <return type="integer"/> + <return type="int"/> </docblock> </method> <method name="getGroupQueries" abstract="false" static="false" visibility="public" final="false"> @@ -722,7 +722,7 @@ </method> <method name="removeExpandSortField" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Removes an expand sort field from the expand.sort parameter."/> + <description compact="Removes an expand sort field from the expand.sort parameter"/> <return type="SolrQuery"/> </docblock> <parameter name="field" optional="false" byreference="false" type="string"/> @@ -845,7 +845,7 @@ <description compact="Sets the number of rows to display in each group (expand.rows). Server Default 5"/> <return type="SolrQuery"/> </docblock> - <parameter name="value" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="value" optional="false" byreference="false" type="int"/> </method> <method name="setExplainOther" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -969,7 +969,7 @@ <description compact="Enables caching for result grouping"/> <return type="SolrQuery"/> </docblock> - <parameter name="percent" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="percent" optional="false" byreference="false" type="int"/> </method> <method name="setGroupFacet" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -980,42 +980,42 @@ </method> <method name="setGroupFormat" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Sets the group format, result structure (group.format parameter)."/> + <description compact="Sets the group format, result structure (group.format parameter)"/> <return type="SolrQuery"/> </docblock> <parameter name="value" optional="false" byreference="false" type="string"/> </method> <method name="setGroupLimit" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Specifies the number of results to return for each group. The server default value is 1."/> + <description compact="Specifies the number of results to return for each group. The server default value is 1"/> <return type="SolrQuery"/> </docblock> - <parameter name="value" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="value" optional="false" byreference="false" type="int"/> </method> <method name="setGroupMain" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="If true, the result of the first field grouping command is used as the main result list in the response, using group.format=simple."/> + <description compact="If true, the result of the first field grouping command is used as the main result list in the response, using group.format=simple"/> <return type="SolrQuery"/> </docblock> <parameter name="value" optional="false" byreference="false" type="string"/> </method> <method name="setGroupNGroups" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="If true, Solr includes the number of groups that have matched the query in the results."/> + <description compact="If true, Solr includes the number of groups that have matched the query in the results"/> <return type="SolrQuery"/> </docblock> <parameter name="value" optional="false" byreference="false" type="object" class="bool"/> </method> <method name="setGroupOffset" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Sets the group.offset parameter."/> + <description compact="Sets the group.offset parameter"/> <return type="SolrQuery"/> </docblock> - <parameter name="value" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="value" optional="false" byreference="false" type="int"/> </method> <method name="setGroupTruncate" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="If true, facet counts are based on the most relevant document of each group matching the query."/> + <description compact="If true, facet counts are based on the most relevant document of each group matching the query"/> <return type="SolrQuery"/> </docblock> <parameter name="value" optional="false" byreference="false" type="object" class="bool"/> diff --git a/dependencies/php/classes/SplBool.xml b/dependencies/php/classes/SplBool.xml index d65bb5735ee2a867e9f0379e93a6eaa59cc851c5..4ecee5967b4f3042cfee65ec1baabdea0c12612e 100644 --- a/dependencies/php/classes/SplBool.xml +++ b/dependencies/php/classes/SplBool.xml @@ -1,17 +1,17 @@ <?xml version="1.0" encoding="UTF-8" ?> <class xmlns="http://xml.phpdox.net/src" full="SplBool" namespace="" name="SplBool"> <extends name="SplEnum" full="SplEnum"/> - <constant name="__default" value="false"> + <constant name="__default" value="FALSE"> <docblock> <var type="boolean"/> </docblock> </constant> - <constant name="false" value="false"> + <constant name="false" value="FALSE"> <docblock> <var type="boolean"/> </docblock> </constant> - <constant name="true" value="true"> + <constant name="true" value="TRUE"> <docblock> <var type="boolean"/> </docblock> diff --git a/dependencies/php/classes/SplDoublyLinkedList.xml b/dependencies/php/classes/SplDoublyLinkedList.xml index 2eb2d1bbdbe8d735713e7144be68f41290014243..983668b7229b73893d2137cef6c2398cd4f9e000 100644 --- a/dependencies/php/classes/SplDoublyLinkedList.xml +++ b/dependencies/php/classes/SplDoublyLinkedList.xml @@ -23,7 +23,7 @@ </method> <method name="count" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Counts the number of elements in the doubly linked list."/> + <description compact="Counts the number of elements in the doubly linked list"/> <return type="int"/> </docblock> </method> @@ -41,7 +41,7 @@ </method> <method name="isEmpty" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Checks whether the doubly linked list is empty."/> + <description compact="Checks whether the doubly linked list is empty"/> <return type="bool"/> </docblock> </method> diff --git a/dependencies/php/classes/SplEnum.xml b/dependencies/php/classes/SplEnum.xml index fe82fcba7d311eb019e1f13574d9c1f59c8c6b7b..86f0b46f3d1eabaeb4a054a9afc8c434fe512633 100644 --- a/dependencies/php/classes/SplEnum.xml +++ b/dependencies/php/classes/SplEnum.xml @@ -1,14 +1,14 @@ <?xml version="1.0" encoding="UTF-8" ?> <class xmlns="http://xml.phpdox.net/src" full="SplEnum" namespace="" name="SplEnum"> <extends name="SplType" full="SplType"/> - <constant name="__default" value="null"> + <constant name="__default" value="NULL"> <docblock> <var type="NULL"/> </docblock> </constant> <method name="getConstList" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns all consts (possible values) as an array."/> + <description compact="Returns all consts (possible values) as an array"/> <return type="array"/> </docblock> <parameter name="include_default" optional="true" byreference="false" type="object" class="bool"/> diff --git a/dependencies/php/classes/SplFileInfo.xml b/dependencies/php/classes/SplFileInfo.xml index 3615a2cc007c1bfb7fb0c12520606aec8901ba70..3912c14f8230616ec3e89ab72cd5bd8fe9ac77ec 100644 --- a/dependencies/php/classes/SplFileInfo.xml +++ b/dependencies/php/classes/SplFileInfo.xml @@ -15,7 +15,7 @@ </method> <method name="getBasename" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Gets the base name of the file"/> + <description compact="Gets the base name of the file">This method returns the base name of the file, directory, or link without path info.</description> <return type="string"/> </docblock> <parameter name="suffix" optional="true" byreference="false" type="string"/> diff --git a/dependencies/php/classes/SplFileObject.xml b/dependencies/php/classes/SplFileObject.xml index 20ffa338f9e9f42e0f4545241ab07cc114448424..aee72fa253738a92053bb675b85ff621fdc5045c 100644 --- a/dependencies/php/classes/SplFileObject.xml +++ b/dependencies/php/classes/SplFileObject.xml @@ -21,6 +21,16 @@ <var type="integer"/> </docblock> </constant> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Construct a new file object"/> + <return type="void"/> + </docblock> + <parameter name="filename" optional="false" byreference="false" type="string"/> + <parameter name="open_mode" optional="true" byreference="false" type="string"/> + <parameter name="use_include_path" optional="true" byreference="false" type="object" class="bool"/> + <parameter name="context" optional="true" byreference="false" type="object" class="resource"/> + </constructor> <method name="current" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Retrieve current line of file"/> @@ -47,7 +57,7 @@ </method> <method name="fgetcsv" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Gets line from file and parse as CSV fields"/> + <description compact="Gets line from file and parse as CSV fields">Gets a line from the file which is in CSV format and returns an array containing the fields read.</description> <return type="array"/> </docblock> <parameter name="delimiter" optional="true" byreference="false" type="string"/> @@ -219,25 +229,12 @@ </docblock> <parameter name="max_len" optional="false" byreference="false" type="int"/> </method> - <method name="__toString" abstract="false" static="false" visibility="public" final="false"> - <docblock> - <description compact="Alias of SplFileObject::current"/> - <return type="void"/> - </docblock> - </method> <method name="valid" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Not at EOF"/> <return type="bool"/> </docblock> </method> - <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> - <docblock> - <description compact=""/> - <return type="void"/> - </docblock> - <parameter name="file_name" optional="false" byreference="false" type="string"/> - </constructor> <method name="getATime" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> diff --git a/dependencies/php/classes/SplFixedArray.xml b/dependencies/php/classes/SplFixedArray.xml index d5c17025e4be99f6967f8871c1b12657bae75178..f0557e046c3f4b1438e9c3facb71fda12aad6e1a 100644 --- a/dependencies/php/classes/SplFixedArray.xml +++ b/dependencies/php/classes/SplFixedArray.xml @@ -84,7 +84,7 @@ <method name="setSize" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Change the size of an array"/> - <return type="int"/> + <return type="bool"/> </docblock> <parameter name="size" optional="false" byreference="false" type="int"/> </method> diff --git a/dependencies/php/classes/SplHeap.xml b/dependencies/php/classes/SplHeap.xml index 8e1b3dd89ea8e80266834f3f79af5feb8578968c..b2e4d72510e402f74ae08c60d23edae2238c82bd 100644 --- a/dependencies/php/classes/SplHeap.xml +++ b/dependencies/php/classes/SplHeap.xml @@ -9,7 +9,7 @@ </constructor> <method name="compare" abstract="false" static="false" visibility="protected" final="false"> <docblock> - <description compact="Compare elements in order to place them correctly in the heap while sifting up.">Compare value1 with value2.</description> + <description compact="Compare elements in order to place them correctly in the heap while sifting up">Compare value1 with value2.</description> <return type="int"/> </docblock> <parameter name="value1" optional="false" byreference="false" type="object" class="mixed"/> @@ -17,7 +17,7 @@ </method> <method name="count" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Counts the number of elements in the heap."/> + <description compact="Counts the number of elements in the heap"/> <return type="int"/> </docblock> </method> @@ -29,20 +29,26 @@ </method> <method name="extract" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Extracts a node from top of the heap and sift up."/> + <description compact="Extracts a node from top of the heap and sift up"/> <return type="mixed"/> </docblock> </method> <method name="insert" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Inserts an element in the heap by sifting it up."/> + <description compact="Inserts an element in the heap by sifting it up"/> <return type="void"/> </docblock> <parameter name="value" optional="false" byreference="false" type="object" class="mixed"/> </method> + <method name="isCorrupted" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Tells if the heap is in a corrupted state"/> + <return type="bool"/> + </docblock> + </method> <method name="isEmpty" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Checks whether the heap is empty."/> + <description compact="Checks whether the heap is empty"/> <return type="bool"/> </docblock> </method> @@ -60,7 +66,7 @@ </method> <method name="recoverFromCorruption" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Recover from the corrupted state and allow further actions on the heap."/> + <description compact="Recover from the corrupted state and allow further actions on the heap"/> <return type="void"/> </docblock> </method> diff --git a/dependencies/php/classes/SplMaxHeap.xml b/dependencies/php/classes/SplMaxHeap.xml index 68a2f6c70b8c4f6812f621ca1f907533f6d32fd0..fa35bd4c58542ab5c6daaf2a5799036553a03a07 100644 --- a/dependencies/php/classes/SplMaxHeap.xml +++ b/dependencies/php/classes/SplMaxHeap.xml @@ -3,7 +3,7 @@ <implements name="Iterator" full="Iterator"/> <method name="compare" abstract="false" static="false" visibility="protected" final="false"> <docblock> - <description compact="Compare elements in order to place them correctly in the heap while sifting up."/> + <description compact="Compare elements in order to place them correctly in the heap while sifting up"/> <return type="int"/> </docblock> <parameter name="value1" optional="false" byreference="false" type="object" class="mixed"/> @@ -42,6 +42,12 @@ </docblock> <parameter name="value" optional="false" byreference="false" type="object" class="mixed"/> </method> + <method name="isCorrupted" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + </method> <method name="isEmpty" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> diff --git a/dependencies/php/classes/SplMinHeap.xml b/dependencies/php/classes/SplMinHeap.xml index df5157baceabcd9b569e1dc9925e3f243c306429..89a315ae8ab6e791f8a25b48bf42b6af3a55ab64 100644 --- a/dependencies/php/classes/SplMinHeap.xml +++ b/dependencies/php/classes/SplMinHeap.xml @@ -3,7 +3,7 @@ <implements name="Iterator" full="Iterator"/> <method name="compare" abstract="false" static="false" visibility="protected" final="false"> <docblock> - <description compact="Compare elements in order to place them correctly in the heap while sifting up."/> + <description compact="Compare elements in order to place them correctly in the heap while sifting up"/> <return type="int"/> </docblock> <parameter name="value1" optional="false" byreference="false" type="object" class="mixed"/> @@ -42,6 +42,12 @@ </docblock> <parameter name="value" optional="false" byreference="false" type="object" class="mixed"/> </method> + <method name="isCorrupted" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + </method> <method name="isEmpty" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> diff --git a/dependencies/php/classes/SplPriorityQueue.xml b/dependencies/php/classes/SplPriorityQueue.xml index b69940a1945d1aaa0fc8c3a4dbdce8851322de02..b5aa804545148be7bac7d64d97b8bd85668bc055 100644 --- a/dependencies/php/classes/SplPriorityQueue.xml +++ b/dependencies/php/classes/SplPriorityQueue.xml @@ -9,7 +9,7 @@ </constructor> <method name="compare" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Compare priorities in order to place elements correctly in the heap while sifting up."/> + <description compact="Compare priorities in order to place elements correctly in the heap while sifting up"/> <return type="int"/> </docblock> <parameter name="priority1" optional="false" byreference="false" type="object" class="mixed"/> @@ -17,7 +17,7 @@ </method> <method name="count" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Counts the number of elements in the queue."/> + <description compact="Counts the number of elements in the queue"/> <return type="int"/> </docblock> </method> @@ -29,21 +29,33 @@ </method> <method name="extract" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Extracts a node from top of the heap and shift up."/> + <description compact="Extracts a node from top of the heap and sift up"/> <return type="mixed"/> </docblock> </method> + <method name="getExtractFlags" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get the flags of extraction"/> + <return type="int"/> + </docblock> + </method> <method name="insert" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Inserts an element in the queue by sifting it up."/> + <description compact="Inserts an element in the queue by sifting it up"/> <return type="void"/> </docblock> <parameter name="value" optional="false" byreference="false" type="object" class="mixed"/> <parameter name="priority" optional="false" byreference="false" type="object" class="mixed"/> </method> + <method name="isCorrupted" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Tells if the priority queue is in a corrupted state"/> + <return type="bool"/> + </docblock> + </method> <method name="isEmpty" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Checks whether the queue is empty."/> + <description compact="Checks whether the queue is empty"/> <return type="bool"/> </docblock> </method> @@ -61,7 +73,7 @@ </method> <method name="recoverFromCorruption" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Recover from the corrupted state and allow further actions on the queue."/> + <description compact="Recover from the corrupted state and allow further actions on the queue"/> <return type="void"/> </docblock> </method> diff --git a/dependencies/php/classes/SplQueue.xml b/dependencies/php/classes/SplQueue.xml index 0827983445a36fd9cfa3a477dccf14f7020595f5..a0779413de67b95ebacd8b9c4374ebed0b21762b 100644 --- a/dependencies/php/classes/SplQueue.xml +++ b/dependencies/php/classes/SplQueue.xml @@ -15,7 +15,7 @@ </method> <method name="enqueue" abstract="false" static="false" final="false"> <docblock> - <description compact="Adds an element to the queue.">Enqueues value at the end of the queue.</description> + <description compact="Adds an element to the queue">Enqueues value at the end of the queue.</description> <return type="void"/> </docblock> <parameter name="value" optional="false" byreference="false" type="object" class="mixed"/> diff --git a/dependencies/php/classes/SplTempFileObject.xml b/dependencies/php/classes/SplTempFileObject.xml index 323b969a038bee0763c111b9fe25bbaebb6dabf8..0402df2c5898af345ca7dd3af0ba02c6eb93b903 100644 --- a/dependencies/php/classes/SplTempFileObject.xml +++ b/dependencies/php/classes/SplTempFileObject.xml @@ -1,6 +1,26 @@ <?xml version="1.0" encoding="UTF-8" ?> <class xmlns="http://xml.phpdox.net/src" full="SplTempFileObject" namespace="" name="SplTempFileObject"> <implements name="SeekableIterator" full="SeekableIterator"/> + <constant name="DROP_NEW_LINE" value="1"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="READ_AHEAD" value="2"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="SKIP_EMPTY" value="4"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="READ_CSV" value="8"> + <docblock> + <var type="integer"/> + </docblock> + </constant> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Construct a new temporary file object"/> @@ -206,12 +226,6 @@ </docblock> <parameter name="max_len" optional="false" byreference="false" type="int"/> </method> - <method name="__toString" abstract="false" static="false" visibility="public" final="false"> - <docblock> - <description compact=""/> - <return type="void"/> - </docblock> - </method> <method name="valid" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> diff --git a/dependencies/php/classes/SplType.xml b/dependencies/php/classes/SplType.xml index 6fd102b1e12f71779c8ae4d46ac3054993a94ab5..b32921a36dbbd0fbcd0d12097b243a0493f8dbeb 100644 --- a/dependencies/php/classes/SplType.xml +++ b/dependencies/php/classes/SplType.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8" ?> <class xmlns="http://xml.phpdox.net/src" full="SplType" namespace="" name="SplType"> - <constant name="__default" value="null"> + <constant name="__default" value="NULL"> <docblock> <var type="NULL"/> </docblock> diff --git a/dependencies/php/classes/Spoofchecker.xml b/dependencies/php/classes/Spoofchecker.xml index 21373f21bc6bb587c9450d1b67efe40f09738efa..3343bba659afa668803fffebf7506a4552c61ddf 100644 --- a/dependencies/php/classes/Spoofchecker.xml +++ b/dependencies/php/classes/Spoofchecker.xml @@ -70,6 +70,6 @@ <description compact="Set the checks to run"/> <return type="void"/> </docblock> - <parameter name="checks" optional="false" byreference="false" type="object" class="long"/> + <parameter name="checks" optional="false" byreference="false" type="int"/> </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/Swoole_Async.xml b/dependencies/php/classes/Swoole_Async.xml new file mode 100644 index 0000000000000000000000000000000000000000..c0f571bb1a77452bb21d137b4a26791f76a25191 --- /dev/null +++ b/dependencies/php/classes/Swoole_Async.xml @@ -0,0 +1,56 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Swoole\Async" namespace="Swoole" name="Async"> + <method name="dnsLookup" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Async and non-blocking hostname to IP lookup."/> + <return type="void"/> + </docblock> + <parameter name="hostname" optional="false" byreference="false" type="string"/> + <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> + </method> + <method name="read" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Read file stream asynchronously."/> + <return type="bool"/> + </docblock> + <parameter name="filename" optional="false" byreference="false" type="string"/> + <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> + <parameter name="chunk_size" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="offset" optional="true" byreference="false" type="object" class="integer"/> + </method> + <method name="readFile" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Read a file asynchronously."/> + <return type="void"/> + </docblock> + <parameter name="filename" optional="false" byreference="false" type="string"/> + <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> + </method> + <method name="set" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Update the async I/O options."/> + <return type="void"/> + </docblock> + <parameter name="settings" optional="false" byreference="false" type="object" class="array"/> + </method> + <method name="write" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Write data to a file stream asynchronously."/> + <return type="void"/> + </docblock> + <parameter name="filename" optional="false" byreference="false" type="string"/> + <parameter name="content" optional="false" byreference="false" type="string"/> + <parameter name="offset" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="callback" optional="true" byreference="false" type="object" class="callable"/> + </method> + <method name="writeFile" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Description"/> + <return type="void"/> + </docblock> + <parameter name="filename" optional="false" byreference="false" type="string"/> + <parameter name="content" optional="false" byreference="false" type="string"/> + <parameter name="callback" optional="true" byreference="false" type="object" class="callable"/> + <parameter name="flags" optional="true" byreference="false" type="string"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Swoole_Atomic.xml b/dependencies/php/classes/Swoole_Atomic.xml new file mode 100644 index 0000000000000000000000000000000000000000..5d512173012fd032ee604f0e6c14cd64069df589 --- /dev/null +++ b/dependencies/php/classes/Swoole_Atomic.xml @@ -0,0 +1,38 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Swoole\Atomic" namespace="Swoole" name="Atomic"> + <method name="add" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Add a number to the value to the atomic object."/> + <return type="integer"/> + </docblock> + <parameter name="add_value" optional="true" byreference="false" type="object" class="integer"/> + </method> + <method name="cmpset" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Compare and set the value of the atomic object."/> + <return type="integer"/> + </docblock> + <parameter name="cmp_value" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="new_value" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="get" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get the current value of the atomic object."/> + <return type="integer"/> + </docblock> + </method> + <method name="set" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Set a new value to the atomic object."/> + <return type="integer"/> + </docblock> + <parameter name="value" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="sub" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Subtract a number to the value of the atomic object."/> + <return type="integer"/> + </docblock> + <parameter name="sub_value" optional="true" byreference="false" type="object" class="integer"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Swoole_Buffer.xml b/dependencies/php/classes/Swoole_Buffer.xml new file mode 100644 index 0000000000000000000000000000000000000000..6b66354c8036de00160aa810971796dd8c45c2d1 --- /dev/null +++ b/dependencies/php/classes/Swoole_Buffer.xml @@ -0,0 +1,66 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Swoole\Buffer" namespace="Swoole" name="Buffer"> + <method name="append" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Append the string or binary data at the end of the memory buffer and return the new size of memory allocated."/> + <return type="integer"/> + </docblock> + <parameter name="data" optional="false" byreference="false" type="string"/> + </method> + <method name="clear" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Reset the memory buffer."/> + <return type="void"/> + </docblock> + </method> + <destructor name="__destruct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Destruct the Swoole memory buffer."/> + <return type="void"/> + </docblock> + </destructor> + <method name="expand" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Expand the size of memory buffer."/> + <return type="integer"/> + </docblock> + <parameter name="size" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="read" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Read data from the memory buffer based on offset and length."/> + <return type="string"/> + </docblock> + <parameter name="offset" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="length" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="recycle" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Release the memory to OS which is not used by the memory buffer."/> + <return type="void"/> + </docblock> + </method> + <method name="substr" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Read data from the memory buffer based on offset and length. Or remove data from the memory buffer."/> + <return type="string"/> + </docblock> + <parameter name="offset" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="length" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="remove" optional="true" byreference="false" type="object" class="bool"/> + </method> + <method name="__toString" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get the string value of the memory buffer."/> + <return type="string"/> + </docblock> + </method> + <method name="write" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Write data to the memory buffer. The memory allocated for the buffer will not be changed."/> + <return type="void"/> + </docblock> + <parameter name="offset" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="data" optional="false" byreference="false" type="string"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Swoole_Channel.xml b/dependencies/php/classes/Swoole_Channel.xml new file mode 100644 index 0000000000000000000000000000000000000000..0fba5e5dab21778dd0458c60130f0678abff50d7 --- /dev/null +++ b/dependencies/php/classes/Swoole_Channel.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Swoole\Channel" namespace="Swoole" name="Channel"> + <destructor name="__destruct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Destruct a Swoole channel."/> + <return type="void"/> + </docblock> + </destructor> + <method name="pop" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Read and pop data from swoole channel."/> + <return type="mixed"/> + </docblock> + </method> + <method name="push" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Write and push data into Swoole channel.">Data can be any non-empty PHP variable, the variable will be serialized if it is not string type.</description> + <return type="bool"/> + </docblock> + <parameter name="data" optional="false" byreference="false" type="string"/> + </method> + <method name="stats" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get stats of swoole channel."/> + <return type="array"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Swoole_Client.xml b/dependencies/php/classes/Swoole_Client.xml new file mode 100644 index 0000000000000000000000000000000000000000..77b3839759a0865dcc4fb0488f4af4a07b29203a --- /dev/null +++ b/dependencies/php/classes/Swoole_Client.xml @@ -0,0 +1,167 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Swoole\Client" namespace="Swoole" name="Client"> + <constant name="MSG_OOB" value="1"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="MSG_PEEK" value="2"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="MSG_DONTWAIT" value="128"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="MSG_WAITALL" value="64"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <member name="errCode" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact=""/> + </docblock> + </member> + <member name="sock" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact=""/> + </docblock> + </member> + <member name="reuse" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact=""/> + </docblock> + </member> + <member name="reuseCount" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact=""/> + </docblock> + </member> + <method name="close" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Close the connection established."/> + <return type="bool"/> + </docblock> + <parameter name="force" optional="true" byreference="false" type="object" class="bool"/> + </method> + <method name="connect" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Connect to the remote TCP or UDP port."/> + <return type="bool"/> + </docblock> + <parameter name="host" optional="false" byreference="false" type="string"/> + <parameter name="port" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="timeout" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="flag" optional="true" byreference="false" type="object" class="integer"/> + </method> + <destructor name="__destruct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Destruct the Swoole client."/> + <return type="void"/> + </docblock> + </destructor> + <method name="getpeername" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get the remote socket name of the connection."/> + <return type="array"/> + </docblock> + </method> + <method name="getsockname" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get the local socket name of the connection."/> + <return type="array"/> + </docblock> + </method> + <method name="isConnected" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Check if the connection is established."/> + <return type="bool"/> + </docblock> + </method> + <method name="on" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Add callback functions triggered by events."/> + <return type="void"/> + </docblock> + <parameter name="event" optional="false" byreference="false" type="string"/> + <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> + </method> + <method name="pause" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Pause receiving data."/> + <return type="void"/> + </docblock> + </method> + <method name="pipe" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Redirect the data to another file descriptor."/> + <return type="void"/> + </docblock> + <parameter name="socket" optional="false" byreference="false" type="string"/> + </method> + <method name="recv" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Receive data from the remote socket."/> + <return type="void"/> + </docblock> + <parameter name="size" optional="true" byreference="false" type="string"/> + <parameter name="flag" optional="true" byreference="false" type="string"/> + </method> + <method name="resume" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Resume receiving data."/> + <return type="void"/> + </docblock> + </method> + <method name="send" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Send data to the remote TCP socket."/> + <return type="integer"/> + </docblock> + <parameter name="data" optional="false" byreference="false" type="string"/> + <parameter name="flag" optional="true" byreference="false" type="string"/> + </method> + <method name="sendfile" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Send file to the remote TCP socket."/> + <return type="boolean"/> + </docblock> + <parameter name="filename" optional="false" byreference="false" type="string"/> + <parameter name="offset" optional="true" byreference="false" type="int"/> + </method> + <method name="sendto" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Send data to the remote UDP address."/> + <return type="boolean"/> + </docblock> + <parameter name="ip" optional="false" byreference="false" type="string"/> + <parameter name="port" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="data" optional="false" byreference="false" type="string"/> + </method> + <method name="set" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Set the Swoole client parameters before the connection is established."/> + <return type="void"/> + </docblock> + <parameter name="settings" optional="false" byreference="false" type="object" class="array"/> + </method> + <method name="sleep" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Remove the TCP client from system event loop."/> + <return type="void"/> + </docblock> + </method> + <method name="wakeup" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Add the TCP client back into the system event loop."/> + <return type="void"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Swoole_Connection_Iterator.xml b/dependencies/php/classes/Swoole_Connection_Iterator.xml new file mode 100644 index 0000000000000000000000000000000000000000..0eb11e211aaf539c222cbfee03bfd1059effcca8 --- /dev/null +++ b/dependencies/php/classes/Swoole_Connection_Iterator.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Swoole\Connection\Iterator" namespace="Swoole\Connection" name="Iterator"> + <implements name="Iterator" full="Iterator"/> + <method name="count" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Count connections."/> + <return type="int"/> + </docblock> + </method> + <method name="current" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Return current connection entry."/> + <return type="Connection"/> + </docblock> + </method> + <method name="key" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Return key of the current connection."/> + <return type="int"/> + </docblock> + </method> + <method name="next" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Move to the next connection."/> + <return type="Connection"/> + </docblock> + </method> + <method name="offsetExists" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Check if offet exists."/> + <return type="boolean"/> + </docblock> + <parameter name="index" optional="false" byreference="false" type="int"/> + </method> + <method name="offsetGet" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Offset to retrieve."/> + <return type="Connection"/> + </docblock> + <parameter name="index" optional="false" byreference="false" type="string"/> + </method> + <method name="offsetSet" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Assign a Connection to the specified offset."/> + <return type="void"/> + </docblock> + <parameter name="offset" optional="false" byreference="false" type="int"/> + <parameter name="connection" optional="false" byreference="false" type="object" class="mixed"/> + </method> + <method name="offsetUnset" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Unset an offset."/> + <return type="void"/> + </docblock> + <parameter name="offset" optional="false" byreference="false" type="int"/> + </method> + <method name="rewind" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Rewinds iterator"/> + <return type="void"/> + </docblock> + </method> + <method name="valid" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Check if current position is valid."/> + <return type="boolean"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Swoole_Coroutine.xml b/dependencies/php/classes/Swoole_Coroutine.xml new file mode 100644 index 0000000000000000000000000000000000000000..832973de404be875886b0573b373f93dcec8783e --- /dev/null +++ b/dependencies/php/classes/Swoole_Coroutine.xml @@ -0,0 +1,49 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Swoole\Coroutine" namespace="Swoole" name="Coroutine"> + <method name="call_user_func_array" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Call a callback with an array of parameters"/> + <return type="mixed"/> + </docblock> + <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> + <parameter name="param_array" optional="false" byreference="false" type="object" class="array"/> + </method> + <method name="call_user_func" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Call a callback given by the first parameter"/> + <return type="mixed"/> + </docblock> + <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> + <parameter name="..." optional="true" byreference="false" type="object" class="mixed"/> + </method> + <method name="cli_wait" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Description"/> + <return type="ReturnType"/> + </docblock> + </method> + <method name="create" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Description"/> + <return type="ReturnType"/> + </docblock> + </method> + <method name="getuid" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Description"/> + <return type="ReturnType"/> + </docblock> + </method> + <method name="resume" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Description"/> + <return type="ReturnType"/> + </docblock> + </method> + <method name="suspend" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Description"/> + <return type="ReturnType"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Swoole_Event.xml b/dependencies/php/classes/Swoole_Event.xml new file mode 100644 index 0000000000000000000000000000000000000000..b5374da0b5446a348ee4e9ab06b1dd53076d0bfc --- /dev/null +++ b/dependencies/php/classes/Swoole_Event.xml @@ -0,0 +1,57 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Swoole\Event" namespace="Swoole" name="Event"> + <method name="add" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Add new callback functions of a socket into the EventLoop."/> + <return type="boolean"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="int"/> + <parameter name="read_callback" optional="false" byreference="false" type="object" class="callable"/> + <parameter name="write_callback" optional="true" byreference="false" type="object" class="callable"/> + <parameter name="events" optional="true" byreference="false" type="string"/> + </method> + <method name="defer" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Add a callback function to the next event loop."/> + <return type="void"/> + </docblock> + <parameter name="callback" optional="false" byreference="false" type="object" class="mixed"/> + </method> + <method name="del" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Remove all event callback functions of a socket."/> + <return type="boolean"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="string"/> + </method> + <method name="exit" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Exit the eventloop, only available at client side."/> + <return type="void"/> + </docblock> + </method> + <method name="set" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Update the event callback functions of a socket."/> + <return type="boolean"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="int"/> + <parameter name="read_callback" optional="true" byreference="false" type="string"/> + <parameter name="write_callback" optional="true" byreference="false" type="string"/> + <parameter name="events" optional="true" byreference="false" type="string"/> + </method> + <method name="wait" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Description"/> + <return type="void"/> + </docblock> + </method> + <method name="write" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Write data to the socket."/> + <return type="void"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="string"/> + <parameter name="data" optional="false" byreference="false" type="string"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Swoole_Exception.xml b/dependencies/php/classes/Swoole_Exception.xml new file mode 100644 index 0000000000000000000000000000000000000000..af11e926a486b94eccd6d5e7fcdd1318443811cf --- /dev/null +++ b/dependencies/php/classes/Swoole_Exception.xml @@ -0,0 +1,32 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Swoole\Exception" namespace="Swoole" name="Exception"> + <implements name="Throwable" full="Throwable"/> + <member name="message" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The exception message"/> + <var type="string"/> + </docblock> + </member> + <member name="code" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The exception code"/> + <var type="int"/> + </docblock> + </member> + <member name="file" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The filename where the exception was created"/> + <var type="string"/> + </docblock> + </member> + <member name="line" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The line where the exception was created"/> + <var type="int"/> + </docblock> + </member> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Swoole_Http_Client.xml b/dependencies/php/classes/Swoole_Http_Client.xml new file mode 100644 index 0000000000000000000000000000000000000000..82f783cc1b73c3a7c3cb562892ce83f7649d9505 --- /dev/null +++ b/dependencies/php/classes/Swoole_Http_Client.xml @@ -0,0 +1,139 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Swoole\Http\Client" namespace="Swoole\Http" name="Client"> + <member name="errCode" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact=""/> + </docblock> + </member> + <member name="sock" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact=""/> + </docblock> + </member> + <method name="addFile" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Add a file to the post form."/> + <return type="void"/> + </docblock> + <parameter name="path" optional="false" byreference="false" type="string"/> + <parameter name="name" optional="false" byreference="false" type="string"/> + <parameter name="type" optional="true" byreference="false" type="string"/> + <parameter name="filename" optional="true" byreference="false" type="string"/> + <parameter name="offset" optional="true" byreference="false" type="string"/> + </method> + <method name="close" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Close the http connection."/> + <return type="void"/> + </docblock> + </method> + <destructor name="__destruct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Destruct the HTTP client."/> + <return type="void"/> + </docblock> + </destructor> + <method name="download" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Download a file from the remote server."/> + <return type="void"/> + </docblock> + <parameter name="path" optional="false" byreference="false" type="string"/> + <parameter name="file" optional="false" byreference="false" type="string"/> + <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> + <parameter name="offset" optional="true" byreference="false" type="object" class="integer"/> + </method> + <method name="execute" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Send the HTTP request after setting the parameters."/> + <return type="void"/> + </docblock> + <parameter name="path" optional="false" byreference="false" type="string"/> + <parameter name="callback" optional="false" byreference="false" type="string"/> + </method> + <method name="get" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Send GET http request to the remote server."/> + <return type="void"/> + </docblock> + <parameter name="path" optional="false" byreference="false" type="string"/> + <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> + </method> + <method name="isConnected" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Check if the HTTP connection is connected."/> + <return type="boolean"/> + </docblock> + </method> + <method name="on" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Register callback function by event name."/> + <return type="void"/> + </docblock> + <parameter name="event_name" optional="false" byreference="false" type="string"/> + <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> + </method> + <method name="post" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Send POST http request to the remote server."/> + <return type="void"/> + </docblock> + <parameter name="path" optional="false" byreference="false" type="string"/> + <parameter name="data" optional="false" byreference="false" type="string"/> + <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> + </method> + <method name="push" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Push data to websocket client."/> + <return type="void"/> + </docblock> + <parameter name="data" optional="false" byreference="false" type="string"/> + <parameter name="opcode" optional="true" byreference="false" type="string"/> + <parameter name="finish" optional="true" byreference="false" type="string"/> + </method> + <method name="set" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Update the HTTP client paramters."/> + <return type="void"/> + </docblock> + <parameter name="settings" optional="false" byreference="false" type="object" class="array"/> + </method> + <method name="setCookies" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Set the http request cookies."/> + <return type="void"/> + </docblock> + <parameter name="cookies" optional="false" byreference="false" type="object" class="array"/> + </method> + <method name="setData" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Set the HTTP request body data."/> + <return type="ReturnType"/> + </docblock> + <parameter name="data" optional="false" byreference="false" type="string"/> + </method> + <method name="setHeaders" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Set the HTTP request headers."/> + <return type="void"/> + </docblock> + <parameter name="headers" optional="false" byreference="false" type="object" class="array"/> + </method> + <method name="setMethod" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Set the HTTP request method."/> + <return type="void"/> + </docblock> + <parameter name="method" optional="false" byreference="false" type="string"/> + </method> + <method name="upgrade" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Upgrade to websocket protocol."/> + <return type="void"/> + </docblock> + <parameter name="path" optional="false" byreference="false" type="string"/> + <parameter name="callback" optional="false" byreference="false" type="string"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Swoole_Http_Request.xml b/dependencies/php/classes/Swoole_Http_Request.xml new file mode 100644 index 0000000000000000000000000000000000000000..2bb02ea6b1c56b07d39c14db375cbe6edfc2f01f --- /dev/null +++ b/dependencies/php/classes/Swoole_Http_Request.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Swoole\Http\Request" namespace="Swoole\Http" name="Request"> + <destructor name="__destruct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Destruct the HTTP request."/> + <return type="void"/> + </docblock> + </destructor> + <method name="rawcontent" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get the raw HTTP POST body."/> + <return type="string"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Swoole_Http_Response.xml b/dependencies/php/classes/Swoole_Http_Response.xml new file mode 100644 index 0000000000000000000000000000000000000000..4870f4a19707a9862975166d48fc6d24ec30681e --- /dev/null +++ b/dependencies/php/classes/Swoole_Http_Response.xml @@ -0,0 +1,86 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Swoole\Http\Response" namespace="Swoole\Http" name="Response"> + <method name="cookie" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Set the cookies of the HTTP response."/> + <return type="string"/> + </docblock> + <parameter name="name" optional="false" byreference="false" type="string"/> + <parameter name="value" optional="true" byreference="false" type="string"/> + <parameter name="expires" optional="true" byreference="false" type="string"/> + <parameter name="path" optional="true" byreference="false" type="string"/> + <parameter name="domain" optional="true" byreference="false" type="string"/> + <parameter name="secure" optional="true" byreference="false" type="string"/> + <parameter name="httponly" optional="true" byreference="false" type="string"/> + </method> + <destructor name="__destruct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Destruct the HTTP response."/> + <return type="void"/> + </docblock> + </destructor> + <method name="end" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Send data for the HTTP request and finish the response."/> + <return type="void"/> + </docblock> + <parameter name="content" optional="true" byreference="false" type="string"/> + </method> + <method name="gzip" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Enable the gzip of response content. "/> + <return type="ReturnType"/> + </docblock> + <parameter name="compress_level" optional="true" byreference="false" type="string"/> + </method> + <method name="header" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Set the HTTP response headers."/> + <return type="void"/> + </docblock> + <parameter name="key" optional="false" byreference="false" type="string"/> + <parameter name="value" optional="false" byreference="false" type="string"/> + <parameter name="ucwords" optional="true" byreference="false" type="string"/> + </method> + <method name="initHeader" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Init the HTTP response header."/> + <return type="ReturnType"/> + </docblock> + </method> + <method name="rawcookie" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Set the raw cookies to the HTTP response."/> + <return type="ReturnType"/> + </docblock> + <parameter name="name" optional="false" byreference="false" type="string"/> + <parameter name="value" optional="true" byreference="false" type="string"/> + <parameter name="expires" optional="true" byreference="false" type="string"/> + <parameter name="path" optional="true" byreference="false" type="string"/> + <parameter name="domain" optional="true" byreference="false" type="string"/> + <parameter name="secure" optional="true" byreference="false" type="string"/> + <parameter name="httponly" optional="true" byreference="false" type="string"/> + </method> + <method name="sendfile" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Send file through the HTTP response."/> + <return type="ReturnType"/> + </docblock> + <parameter name="filename" optional="false" byreference="false" type="string"/> + <parameter name="offset" optional="true" byreference="false" type="int"/> + </method> + <method name="status" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Set the status code of the HTTP response."/> + <return type="ReturnType"/> + </docblock> + <parameter name="http_code" optional="false" byreference="false" type="string"/> + </method> + <method name="write" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Append HTTP body content to the HTTP response."/> + <return type="void"/> + </docblock> + <parameter name="content" optional="false" byreference="false" type="string"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Swoole_Http_Server.xml b/dependencies/php/classes/Swoole_Http_Server.xml new file mode 100644 index 0000000000000000000000000000000000000000..50250e55dc19dd2d12c6a5e23878bc2f14c6d507 --- /dev/null +++ b/dependencies/php/classes/Swoole_Http_Server.xml @@ -0,0 +1,301 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Swoole\Http\Server" namespace="Swoole\Http" name="Server"> + <extends name="Swoole\Server" full="Swoole\Server"/> + <method name="on" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Bind callback function to HTTP server by event name."/> + <return type="void"/> + </docblock> + <parameter name="event_name" optional="false" byreference="false" type="string"/> + <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> + </method> + <method name="start" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Start the swoole http server."/> + <return type="void"/> + </docblock> + </method> + <method name="addlistener" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="host" optional="false" byreference="false" type="string"/> + <parameter name="port" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="socket_type" optional="false" byreference="false" type="string"/> + </method> + <method name="addProcess" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="boolean"/> + </docblock> + <parameter name="process" optional="false" byreference="false" type="object" class="swoole_process"/> + </method> + <method name="after" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="ReturnType"/> + </docblock> + <parameter name="after_time_ms" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> + <parameter name="param" optional="true" byreference="false" type="string"/> + </method> + <method name="bind" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="boolean"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="uid" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="clearTimer" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="timer_id" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="timer_id" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="close" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="boolean"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="reset" optional="true" byreference="false" type="object" class="boolean"/> + </method> + <method name="confirm" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="boolean"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="connection_info" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="reactor_id" optional="true" byreference="false" type="object" class="integer"/> + </method> + <method name="connection_list" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + <parameter name="start_fd" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="pagesize" optional="true" byreference="false" type="object" class="integer"/> + </method> + <method name="defer" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> + </method> + <method name="exist" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="boolean"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="finish" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="data" optional="false" byreference="false" type="string"/> + </method> + <method name="getClientInfo" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="ReturnType"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="reactor_id" optional="true" byreference="false" type="object" class="integer"/> + </method> + <method name="getClientList" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + <parameter name="start_fd" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="pagesize" optional="true" byreference="false" type="object" class="integer"/> + </method> + <method name="getLastError" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="integer"/> + </docblock> + </method> + <method name="heartbeat" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mixed"/> + </docblock> + <parameter name="if_close_connection" optional="false" byreference="false" type="object" class="boolean"/> + </method> + <method name="listen" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="boolean"/> + </docblock> + <parameter name="host" optional="false" byreference="false" type="string"/> + <parameter name="port" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="socket_type" optional="false" byreference="false" type="string"/> + </method> + <method name="on" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="event_name" optional="false" byreference="false" type="string"/> + <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> + </method> + <method name="pause" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="protect" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="is_protected" optional="true" byreference="false" type="object" class="boolean"/> + </method> + <method name="reload" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="boolean"/> + </docblock> + </method> + <method name="resume" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="send" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="boolean"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="data" optional="false" byreference="false" type="string"/> + <parameter name="reactor_id" optional="true" byreference="false" type="object" class="integer"/> + </method> + <method name="sendfile" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="boolean"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="filename" optional="false" byreference="false" type="string"/> + <parameter name="offset" optional="true" byreference="false" type="object" class="integer"/> + </method> + <method name="sendMessage" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="boolean"/> + </docblock> + <parameter name="worker_id" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="data" optional="false" byreference="false" type="string"/> + </method> + <method name="sendto" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="boolean"/> + </docblock> + <parameter name="ip" optional="false" byreference="false" type="string"/> + <parameter name="port" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="data" optional="false" byreference="false" type="string"/> + <parameter name="server_socket" optional="true" byreference="false" type="string"/> + </method> + <method name="sendwait" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="boolean"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="data" optional="false" byreference="false" type="string"/> + </method> + <method name="set" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="ReturnType"/> + </docblock> + <parameter name="settings" optional="false" byreference="false" type="object" class="array"/> + </method> + <method name="shutdown" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> + <method name="start" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> + <method name="stats" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + </method> + <method name="stop" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="boolean"/> + </docblock> + <parameter name="worker_id" optional="true" byreference="false" type="object" class="integer"/> + </method> + <method name="task" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mixed"/> + </docblock> + <parameter name="data" optional="false" byreference="false" type="string"/> + <parameter name="dst_worker_id" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="callback" optional="true" byreference="false" type="object" class="callable"/> + </method> + <method name="taskwait" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="data" optional="false" byreference="false" type="string"/> + <parameter name="timeout" optional="true" byreference="false" type="object" class="float"/> + <parameter name="worker_id" optional="true" byreference="false" type="object" class="integer"/> + </method> + <method name="taskWaitMulti" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="tasks" optional="false" byreference="false" type="object" class="array"/> + <parameter name="timeout_ms" optional="true" byreference="false" type="object" class="double"/> + </method> + <method name="tick" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="interval_ms" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Swoole_Lock.xml b/dependencies/php/classes/Swoole_Lock.xml new file mode 100644 index 0000000000000000000000000000000000000000..1206252618750565eb9d594dfa47181df1f3c6f3 --- /dev/null +++ b/dependencies/php/classes/Swoole_Lock.xml @@ -0,0 +1,39 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Swoole\Lock" namespace="Swoole" name="Lock"> + <destructor name="__destruct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Destory a Swoole memory lock."/> + <return type="void"/> + </docblock> + </destructor> + <method name="lock_read" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Lock a read-write lock for reading."/> + <return type="void"/> + </docblock> + </method> + <method name="lock" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Try to acquire the lock. It will block if the lock is not available."/> + <return type="void"/> + </docblock> + </method> + <method name="trylock_read" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Try to lock a read-write lock for reading and return straight away even the lock is not available."/> + <return type="void"/> + </docblock> + </method> + <method name="trylock" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Try to acquire the lock and return straight away even the lock is not available."/> + <return type="void"/> + </docblock> + </method> + <method name="unlock" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Release the lock."/> + <return type="void"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Swoole_Mmap.xml b/dependencies/php/classes/Swoole_Mmap.xml new file mode 100644 index 0000000000000000000000000000000000000000..99e9a5b5d00223b262e58ac182e6e921365c50d8 --- /dev/null +++ b/dependencies/php/classes/Swoole_Mmap.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Swoole\Mmap" namespace="Swoole" name="Mmap"> + <method name="open" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Map a file into memory and return the stream resource which can be used by PHP stream operations."/> + <return type="ReturnType"/> + </docblock> + <parameter name="filename" optional="false" byreference="false" type="string"/> + <parameter name="size" optional="true" byreference="false" type="string"/> + <parameter name="offset" optional="true" byreference="false" type="string"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Swoole_MySQL.xml b/dependencies/php/classes/Swoole_MySQL.xml new file mode 100644 index 0000000000000000000000000000000000000000..b3b10ac88a10dc8a43e401da85bed27095c9f5b3 --- /dev/null +++ b/dependencies/php/classes/Swoole_MySQL.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Swoole\MySQL" namespace="Swoole" name="MySQL"> + <method name="close" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Close the async MySQL connection."/> + <return type="void"/> + </docblock> + </method> + <method name="connect" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Connect to the remote MySQL server."/> + <return type="void"/> + </docblock> + <parameter name="server_config" optional="false" byreference="false" type="object" class="array"/> + <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> + </method> + <destructor name="__destruct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Destory the async MySQL client."/> + <return type="void"/> + </docblock> + </destructor> + <method name="getBuffer" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Description"/> + <return type="ReturnType"/> + </docblock> + </method> + <method name="on" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Register callback function based on event name."/> + <return type="void"/> + </docblock> + <parameter name="event_name" optional="false" byreference="false" type="string"/> + <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> + </method> + <method name="query" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Run the SQL query."/> + <return type="ReturnType"/> + </docblock> + <parameter name="sql" optional="false" byreference="false" type="string"/> + <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Swoole_MySQL_Exception.xml b/dependencies/php/classes/Swoole_MySQL_Exception.xml new file mode 100644 index 0000000000000000000000000000000000000000..adf471522ed82efebd07418aeb607470fde0bc0d --- /dev/null +++ b/dependencies/php/classes/Swoole_MySQL_Exception.xml @@ -0,0 +1,32 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Swoole\MySQL\Exception" namespace="Swoole\MySQL" name="Exception"> + <implements name="Throwable" full="Throwable"/> + <member name="message" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The exception message"/> + <var type="string"/> + </docblock> + </member> + <member name="code" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The exception code"/> + <var type="int"/> + </docblock> + </member> + <member name="file" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The filename where the exception was created"/> + <var type="string"/> + </docblock> + </member> + <member name="line" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The line where the exception was created"/> + <var type="int"/> + </docblock> + </member> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Swoole_Process.xml b/dependencies/php/classes/Swoole_Process.xml new file mode 100644 index 0000000000000000000000000000000000000000..b5ca43cabdd3ad96c905fc7d8a982a69f97394a2 --- /dev/null +++ b/dependencies/php/classes/Swoole_Process.xml @@ -0,0 +1,134 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Swoole\Process" namespace="Swoole" name="Process"> + <constant name="IPC_NOWAIT" value="256"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <method name="alarm" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="High precision timer which triggers signal with fixed interval."/> + <return type="void"/> + </docblock> + <parameter name="interval_usec" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="close" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Close the pipe to the child process."/> + <return type="void"/> + </docblock> + </method> + <method name="daemon" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Change the process to be a daemon process."/> + <return type="void"/> + </docblock> + <parameter name="nochdir" optional="true" byreference="false" type="object" class="boolean"/> + <parameter name="noclose" optional="true" byreference="false" type="object" class="boolean"/> + </method> + <destructor name="__destruct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Destory the process."/> + <return type="void"/> + </docblock> + </destructor> + <method name="exec" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Execute system commands."/> + <return type="ReturnType"/> + </docblock> + <parameter name="exec_file" optional="false" byreference="false" type="string"/> + <parameter name="args" optional="false" byreference="false" type="string"/> + </method> + <method name="exit" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Stop the child processes."/> + <return type="void"/> + </docblock> + <parameter name="exit_code" optional="true" byreference="false" type="string"/> + </method> + <method name="freeQueue" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Destory the message queue created by swoole_process::useQueue."/> + <return type="void"/> + </docblock> + </method> + <method name="kill" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Send signal to the child process."/> + <return type="void"/> + </docblock> + <parameter name="pid" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="signal_no" optional="true" byreference="false" type="string"/> + </method> + <method name="name" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Set name of the process."/> + <return type="void"/> + </docblock> + <parameter name="process_name" optional="false" byreference="false" type="string"/> + </method> + <method name="pop" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Read and pop data from the message queue."/> + <return type="mixed"/> + </docblock> + <parameter name="maxsize" optional="true" byreference="false" type="object" class="integer"/> + </method> + <method name="push" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Write and push data into the message queue."/> + <return type="boolean"/> + </docblock> + <parameter name="data" optional="false" byreference="false" type="string"/> + </method> + <method name="read" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Read data sending to the process."/> + <return type="string"/> + </docblock> + <parameter name="maxsize" optional="true" byreference="false" type="object" class="integer"/> + </method> + <method name="signal" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Send signal to the child processes."/> + <return type="void"/> + </docblock> + <parameter name="signal_no" optional="false" byreference="false" type="string"/> + <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> + </method> + <method name="start" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Start the process."/> + <return type="void"/> + </docblock> + </method> + <method name="statQueue" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get the stats of the message queue used as the communication method between processes."/> + <return type="array"/> + </docblock> + </method> + <method name="useQueue" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Create a message queue as the communication method between the parent process and child processes."/> + <return type="boolean"/> + </docblock> + <parameter name="key" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="mode" optional="true" byreference="false" type="object" class="integer"/> + </method> + <method name="wait" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Wait for the events of child processes."/> + <return type="array"/> + </docblock> + <parameter name="blocking" optional="true" byreference="false" type="object" class="boolean"/> + </method> + <method name="write" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Write data into the pipe and communicate with the parent process or child processes."/> + <return type="integer"/> + </docblock> + <parameter name="data" optional="false" byreference="false" type="string"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Swoole_Redis_Server.xml b/dependencies/php/classes/Swoole_Redis_Server.xml new file mode 100644 index 0000000000000000000000000000000000000000..b2261714822203728f97555c0bad106204e63fff --- /dev/null +++ b/dependencies/php/classes/Swoole_Redis_Server.xml @@ -0,0 +1,346 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Swoole\Redis\Server" namespace="Swoole\Redis" name="Server"> + <extends name="Swoole\Server" full="Swoole\Server"/> + <constant name="NIL" value="1"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="ERROR" value="0"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="STATUS" value="2"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="INT" value="3"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="STRING" value="4"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="SET" value="5"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="MAP" value="6"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <method name="format" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Description"/> + <return type="ReturnType"/> + </docblock> + <parameter name="type" optional="false" byreference="false" type="string"/> + <parameter name="value" optional="true" byreference="false" type="string"/> + </method> + <method name="setHandler" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Description"/> + <return type="ReturnType"/> + </docblock> + <parameter name="command" optional="false" byreference="false" type="string"/> + <parameter name="callback" optional="false" byreference="false" type="string"/> + <parameter name="number_of_string_param" optional="true" byreference="false" type="string"/> + <parameter name="type_of_array_param" optional="true" byreference="false" type="string"/> + </method> + <method name="start" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Description"/> + <return type="ReturnType"/> + </docblock> + </method> + <method name="addlistener" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="host" optional="false" byreference="false" type="string"/> + <parameter name="port" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="socket_type" optional="false" byreference="false" type="string"/> + </method> + <method name="addProcess" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="boolean"/> + </docblock> + <parameter name="process" optional="false" byreference="false" type="object" class="swoole_process"/> + </method> + <method name="after" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="ReturnType"/> + </docblock> + <parameter name="after_time_ms" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> + <parameter name="param" optional="true" byreference="false" type="string"/> + </method> + <method name="bind" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="boolean"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="uid" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="clearTimer" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="timer_id" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="timer_id" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="close" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="boolean"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="reset" optional="true" byreference="false" type="object" class="boolean"/> + </method> + <method name="confirm" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="boolean"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="connection_info" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="reactor_id" optional="true" byreference="false" type="object" class="integer"/> + </method> + <method name="connection_list" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + <parameter name="start_fd" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="pagesize" optional="true" byreference="false" type="object" class="integer"/> + </method> + <method name="defer" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> + </method> + <method name="exist" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="boolean"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="finish" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="data" optional="false" byreference="false" type="string"/> + </method> + <method name="getClientInfo" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="ReturnType"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="reactor_id" optional="true" byreference="false" type="object" class="integer"/> + </method> + <method name="getClientList" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + <parameter name="start_fd" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="pagesize" optional="true" byreference="false" type="object" class="integer"/> + </method> + <method name="getLastError" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="integer"/> + </docblock> + </method> + <method name="heartbeat" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mixed"/> + </docblock> + <parameter name="if_close_connection" optional="false" byreference="false" type="object" class="boolean"/> + </method> + <method name="listen" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="boolean"/> + </docblock> + <parameter name="host" optional="false" byreference="false" type="string"/> + <parameter name="port" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="socket_type" optional="false" byreference="false" type="string"/> + </method> + <method name="on" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="event_name" optional="false" byreference="false" type="string"/> + <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> + </method> + <method name="pause" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="protect" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="is_protected" optional="true" byreference="false" type="object" class="boolean"/> + </method> + <method name="reload" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="boolean"/> + </docblock> + </method> + <method name="resume" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="send" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="boolean"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="data" optional="false" byreference="false" type="string"/> + <parameter name="reactor_id" optional="true" byreference="false" type="object" class="integer"/> + </method> + <method name="sendfile" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="boolean"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="filename" optional="false" byreference="false" type="string"/> + <parameter name="offset" optional="true" byreference="false" type="object" class="integer"/> + </method> + <method name="sendMessage" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="boolean"/> + </docblock> + <parameter name="worker_id" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="data" optional="false" byreference="false" type="string"/> + </method> + <method name="sendto" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="boolean"/> + </docblock> + <parameter name="ip" optional="false" byreference="false" type="string"/> + <parameter name="port" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="data" optional="false" byreference="false" type="string"/> + <parameter name="server_socket" optional="true" byreference="false" type="string"/> + </method> + <method name="sendwait" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="boolean"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="data" optional="false" byreference="false" type="string"/> + </method> + <method name="set" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="ReturnType"/> + </docblock> + <parameter name="settings" optional="false" byreference="false" type="object" class="array"/> + </method> + <method name="shutdown" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> + <method name="start" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> + <method name="stats" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + </method> + <method name="stop" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="boolean"/> + </docblock> + <parameter name="worker_id" optional="true" byreference="false" type="object" class="integer"/> + </method> + <method name="task" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mixed"/> + </docblock> + <parameter name="data" optional="false" byreference="false" type="string"/> + <parameter name="dst_worker_id" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="callback" optional="true" byreference="false" type="object" class="callable"/> + </method> + <method name="taskwait" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="data" optional="false" byreference="false" type="string"/> + <parameter name="timeout" optional="true" byreference="false" type="object" class="float"/> + <parameter name="worker_id" optional="true" byreference="false" type="object" class="integer"/> + </method> + <method name="taskWaitMulti" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="tasks" optional="false" byreference="false" type="object" class="array"/> + <parameter name="timeout_ms" optional="true" byreference="false" type="object" class="double"/> + </method> + <method name="tick" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="interval_ms" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Swoole_Serialize.xml b/dependencies/php/classes/Swoole_Serialize.xml new file mode 100644 index 0000000000000000000000000000000000000000..71706f0b0f6223d94f5bd08c9abe3f29e40d1fa4 --- /dev/null +++ b/dependencies/php/classes/Swoole_Serialize.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Swoole\Serialize" namespace="Swoole" name="Serialize"> + <method name="pack" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Serialize the data."/> + <return type="ReturnType"/> + </docblock> + <parameter name="data" optional="false" byreference="false" type="string"/> + <parameter name="is_fast" optional="true" byreference="false" type="int"/> + </method> + <method name="unpack" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Unserialize the data."/> + <return type="ReturnType"/> + </docblock> + <parameter name="data" optional="false" byreference="false" type="string"/> + <parameter name="args" optional="true" byreference="false" type="string"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Swoole_Server.xml b/dependencies/php/classes/Swoole_Server.xml new file mode 100644 index 0000000000000000000000000000000000000000..65dd98ac154fb3fd50757baf7069afc77ea4f7a3 --- /dev/null +++ b/dependencies/php/classes/Swoole_Server.xml @@ -0,0 +1,286 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Swoole\Server" namespace="Swoole" name="Server"> + <method name="addlistener" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Add a new listener to the server."/> + <return type="void"/> + </docblock> + <parameter name="host" optional="false" byreference="false" type="string"/> + <parameter name="port" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="socket_type" optional="false" byreference="false" type="string"/> + </method> + <method name="addProcess" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Add a user defined swoole_process to the server."/> + <return type="boolean"/> + </docblock> + <parameter name="process" optional="false" byreference="false" type="object" class="swoole_process"/> + </method> + <method name="after" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Trigger a callback function after a period of time."/> + <return type="ReturnType"/> + </docblock> + <parameter name="after_time_ms" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> + <parameter name="param" optional="true" byreference="false" type="string"/> + </method> + <method name="bind" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Bind the connection to a user defined user ID."/> + <return type="boolean"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="uid" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="clearTimer" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Stop and destory a timer.">Object oriented style (method):</description> + <return type="void"/> + </docblock> + <parameter name="timer_id" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="" abstract="false" static="false" final="false"> + <docblock> + <description compact="Stop and destory a timer.">Object oriented style (method):</description> + <return type="void"/> + </docblock> + <parameter name="timer_id" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="close" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Close a connection to the client."/> + <return type="boolean"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="reset" optional="true" byreference="false" type="object" class="boolean"/> + </method> + <method name="confirm" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Check status of the connection."/> + <return type="boolean"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="connection_info" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get the connection info by file description."/> + <return type="array"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="reactor_id" optional="true" byreference="false" type="object" class="integer"/> + </method> + <method name="connection_list" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get all of the established connections."/> + <return type="array"/> + </docblock> + <parameter name="start_fd" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="pagesize" optional="true" byreference="false" type="object" class="integer"/> + </method> + <method name="defer" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Delay execution of the callback function at the end of current EventLoop."/> + <return type="void"/> + </docblock> + <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> + </method> + <method name="exist" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Check if the connection is existed."/> + <return type="boolean"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="finish" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Used in task process for sending result to the worker process when the task is finished."/> + <return type="void"/> + </docblock> + <parameter name="data" optional="false" byreference="false" type="string"/> + </method> + <method name="getClientInfo" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get the connection info by file description."/> + <return type="ReturnType"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="reactor_id" optional="true" byreference="false" type="object" class="integer"/> + </method> + <method name="getClientList" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get all of the established connections."/> + <return type="array"/> + </docblock> + <parameter name="start_fd" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="pagesize" optional="true" byreference="false" type="object" class="integer"/> + </method> + <method name="getLastError" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get the error code of the most recent error."/> + <return type="integer"/> + </docblock> + </method> + <method name="heartbeat" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Check all the connections on the server."/> + <return type="mixed"/> + </docblock> + <parameter name="if_close_connection" optional="false" byreference="false" type="object" class="boolean"/> + </method> + <method name="listen" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Listen on the given IP and port, socket type."/> + <return type="boolean"/> + </docblock> + <parameter name="host" optional="false" byreference="false" type="string"/> + <parameter name="port" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="socket_type" optional="false" byreference="false" type="string"/> + </method> + <method name="on" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Register a callback function by event name."/> + <return type="void"/> + </docblock> + <parameter name="event_name" optional="false" byreference="false" type="string"/> + <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> + </method> + <method name="pause" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Stop receiving data from the connection."/> + <return type="void"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="protect" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Set the connection to be protected mode."/> + <return type="void"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="is_protected" optional="true" byreference="false" type="object" class="boolean"/> + </method> + <method name="reload" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Restart all the worker process."/> + <return type="boolean"/> + </docblock> + </method> + <method name="resume" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Start receving data from the connection."/> + <return type="void"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="send" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Send data to the client."/> + <return type="boolean"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="data" optional="false" byreference="false" type="string"/> + <parameter name="reactor_id" optional="true" byreference="false" type="object" class="integer"/> + </method> + <method name="sendfile" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Send file to the connection."/> + <return type="boolean"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="filename" optional="false" byreference="false" type="string"/> + <parameter name="offset" optional="true" byreference="false" type="object" class="integer"/> + </method> + <method name="sendMessage" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Send message to worker processes by ID."/> + <return type="boolean"/> + </docblock> + <parameter name="worker_id" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="data" optional="false" byreference="false" type="string"/> + </method> + <method name="sendto" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Send data to the remote UDP address."/> + <return type="boolean"/> + </docblock> + <parameter name="ip" optional="false" byreference="false" type="string"/> + <parameter name="port" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="data" optional="false" byreference="false" type="string"/> + <parameter name="server_socket" optional="true" byreference="false" type="string"/> + </method> + <method name="sendwait" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Send data to the remote socket in the blocking way."/> + <return type="boolean"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="data" optional="false" byreference="false" type="string"/> + </method> + <method name="set" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Set the runtime settings of the swoole server."/> + <return type="ReturnType"/> + </docblock> + <parameter name="settings" optional="false" byreference="false" type="object" class="array"/> + </method> + <method name="shutdown" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Shutdown the master server process, this function can be called in worker processes."/> + <return type="void"/> + </docblock> + </method> + <method name="start" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Start the Swoole server."/> + <return type="void"/> + </docblock> + </method> + <method name="stats" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get the stats of the Swoole server."/> + <return type="array"/> + </docblock> + </method> + <method name="stop" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Stop the Swoole server."/> + <return type="boolean"/> + </docblock> + <parameter name="worker_id" optional="true" byreference="false" type="object" class="integer"/> + </method> + <method name="task" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Send data to the task worker processes."/> + <return type="mixed"/> + </docblock> + <parameter name="data" optional="false" byreference="false" type="string"/> + <parameter name="dst_worker_id" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="callback" optional="true" byreference="false" type="object" class="callable"/> + </method> + <method name="taskwait" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Send data to the task worker processes in blocking way."/> + <return type="void"/> + </docblock> + <parameter name="data" optional="false" byreference="false" type="string"/> + <parameter name="timeout" optional="true" byreference="false" type="object" class="float"/> + <parameter name="worker_id" optional="true" byreference="false" type="object" class="integer"/> + </method> + <method name="taskWaitMulti" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Execute multiple tasks concurrently."/> + <return type="void"/> + </docblock> + <parameter name="tasks" optional="false" byreference="false" type="object" class="array"/> + <parameter name="timeout_ms" optional="true" byreference="false" type="object" class="double"/> + </method> + <method name="tick" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Repeats a given function at every given time-interval."/> + <return type="void"/> + </docblock> + <parameter name="interval_ms" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Swoole_Table.xml b/dependencies/php/classes/Swoole_Table.xml new file mode 100644 index 0000000000000000000000000000000000000000..857ac42e0008a517b340d561a8ee9f0960e6eedf --- /dev/null +++ b/dependencies/php/classes/Swoole_Table.xml @@ -0,0 +1,124 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Swoole\Table" namespace="Swoole" name="Table"> + <implements name="Iterator" full="Iterator"/> + <constant name="TYPE_INT" value="1"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="TYPE_STRING" value="7"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="TYPE_FLOAT" value="6"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <method name="column" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Set the data type and size of the columns."/> + <return type="ReturnType"/> + </docblock> + <parameter name="name" optional="false" byreference="false" type="string"/> + <parameter name="type" optional="false" byreference="false" type="string"/> + <parameter name="size" optional="true" byreference="false" type="object" class="integer"/> + </method> + <method name="count" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Count the rows in the table, or count all the elements in the table if $mode = 1."/> + <return type="integer"/> + </docblock> + </method> + <method name="create" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Create the swoole memory table."/> + <return type="void"/> + </docblock> + </method> + <method name="current" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get the current row."/> + <return type="array"/> + </docblock> + </method> + <method name="decr" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Decrement the value in the Swoole table by $row_key and $column_key."/> + <return type="ReturnType"/> + </docblock> + <parameter name="key" optional="false" byreference="false" type="string"/> + <parameter name="column" optional="false" byreference="false" type="string"/> + <parameter name="decrby" optional="true" byreference="false" type="object" class="integer"/> + </method> + <method name="del" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Delete a row in the Swoole table by $row_key."/> + <return type="void"/> + </docblock> + <parameter name="key" optional="false" byreference="false" type="string"/> + </method> + <method name="destroy" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Destroy the Swoole table."/> + <return type="void"/> + </docblock> + </method> + <method name="exist" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Check if a row is existed by $row_key."/> + <return type="boolean"/> + </docblock> + <parameter name="key" optional="false" byreference="false" type="string"/> + </method> + <method name="get" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get the value in the Swoole table by $row_key and $column_key."/> + <return type="integer"/> + </docblock> + <parameter name="row_key" optional="false" byreference="false" type="string"/> + <parameter name="column_key" optional="false" byreference="false" type="string"/> + </method> + <method name="incr" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Increment the value by $row_key and $column_key."/> + <return type="void"/> + </docblock> + <parameter name="key" optional="false" byreference="false" type="string"/> + <parameter name="column" optional="false" byreference="false" type="string"/> + <parameter name="incrby" optional="true" byreference="false" type="object" class="integer"/> + </method> + <method name="key" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get the key of current row."/> + <return type="string"/> + </docblock> + </method> + <method name="next" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Iterator the next row."/> + <return type="ReturnType"/> + </docblock> + </method> + <method name="rewind" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Rewind the iterator."/> + <return type="void"/> + </docblock> + </method> + <method name="set" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Update a row of the table by $row_key."/> + <return type="VOID"/> + </docblock> + <parameter name="key" optional="false" byreference="false" type="string"/> + <parameter name="value" optional="false" byreference="false" type="object" class="array"/> + </method> + <method name="valid" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Check current if the current row is valid."/> + <return type="boolean"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Swoole_Timer.xml b/dependencies/php/classes/Swoole_Timer.xml new file mode 100644 index 0000000000000000000000000000000000000000..2e5cfbb072dfde2509125b8c11f890b80f61c939 --- /dev/null +++ b/dependencies/php/classes/Swoole_Timer.xml @@ -0,0 +1,34 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Swoole\Timer" namespace="Swoole" name="Timer"> + <method name="after" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Trigger a callback function after a period of time."/> + <return type="void"/> + </docblock> + <parameter name="after_time_ms" optional="false" byreference="false" type="int"/> + <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> + </method> + <method name="clear" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Delete a timer by timer ID."/> + <return type="void"/> + </docblock> + <parameter name="timer_id" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="exists" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Check if a timer is existed."/> + <return type="boolean"/> + </docblock> + <parameter name="timer_id" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="tick" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Repeats a given function at every given time-interval."/> + <return type="void"/> + </docblock> + <parameter name="interval_ms" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> + <parameter name="param" optional="true" byreference="false" type="string"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Swoole_WebSocket_Frame.xml b/dependencies/php/classes/Swoole_WebSocket_Frame.xml new file mode 100644 index 0000000000000000000000000000000000000000..9d142bc138ac5a689c24964279e5535caed43145 --- /dev/null +++ b/dependencies/php/classes/Swoole_WebSocket_Frame.xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Swoole\WebSocket\Frame" namespace="Swoole\WebSocket" name="Frame"/> \ No newline at end of file diff --git a/dependencies/php/classes/Swoole_WebSocket_Server.xml b/dependencies/php/classes/Swoole_WebSocket_Server.xml new file mode 100644 index 0000000000000000000000000000000000000000..f84e2bf45fcc36dfd78eca30237d7a15d1f942ea --- /dev/null +++ b/dependencies/php/classes/Swoole_WebSocket_Server.xml @@ -0,0 +1,60 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Swoole\WebSocket\Server" namespace="Swoole\WebSocket" name="Server"> + <extends name="Swoole\Http\Server" full="Swoole\Http\Server"/> + <method name="exist" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Check if the the file description is existed."/> + <return type="boolean"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="on" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Register event callback function"/> + <return type="ReturnType"/> + </docblock> + <parameter name="event_name" optional="false" byreference="false" type="string"/> + <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> + </method> + <method name="pack" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get a pack of binary data to send in a single frame."/> + <return type="binary"/> + </docblock> + <parameter name="data" optional="false" byreference="false" type="string"/> + <parameter name="opcode" optional="true" byreference="false" type="string"/> + <parameter name="finish" optional="true" byreference="false" type="string"/> + <parameter name="mask" optional="true" byreference="false" type="string"/> + </method> + <method name="push" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Push data to the remote client."/> + <return type="void"/> + </docblock> + <parameter name="fd" optional="false" byreference="false" type="string"/> + <parameter name="data" optional="false" byreference="false" type="string"/> + <parameter name="opcode" optional="true" byreference="false" type="string"/> + <parameter name="finish" optional="true" byreference="false" type="string"/> + </method> + <method name="unpack" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Unpack the binary data received from the client."/> + <return type="string"/> + </docblock> + <parameter name="data" optional="false" byreference="false" type="object" class="binary"/> + </method> + <method name="on" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="event_name" optional="false" byreference="false" type="string"/> + <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> + </method> + <method name="start" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/SyncEvent.xml b/dependencies/php/classes/SyncEvent.xml index 5bae69cabd398c069e6468c91267cae3d68e7b5b..3c012941e15b58b8808c3f08cff90f6a56c830bb 100644 --- a/dependencies/php/classes/SyncEvent.xml +++ b/dependencies/php/classes/SyncEvent.xml @@ -26,6 +26,6 @@ <description compact="Waits for the event to be fired/set"/> <return type="bool"/> </docblock> - <parameter name="wait" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="wait" optional="true" byreference="false" type="int"/> </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/SyncMutex.xml b/dependencies/php/classes/SyncMutex.xml index 7e221c56f5fb60310b5a38bc904dbcc95cd00b74..a39297e3a0c5e959e32b02d15f7c64dd06baef46 100644 --- a/dependencies/php/classes/SyncMutex.xml +++ b/dependencies/php/classes/SyncMutex.xml @@ -12,7 +12,7 @@ <description compact="Waits for an exclusive lock"/> <return type="bool"/> </docblock> - <parameter name="wait" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="wait" optional="true" byreference="false" type="int"/> </method> <method name="unlock" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/SyncReaderWriter.xml b/dependencies/php/classes/SyncReaderWriter.xml index c852252ca3359d157ec00d1646d4d278b5f944c4..eacc00bad54a9a165ca186a970e682c772752420 100644 --- a/dependencies/php/classes/SyncReaderWriter.xml +++ b/dependencies/php/classes/SyncReaderWriter.xml @@ -13,7 +13,7 @@ <description compact="Waits for a read lock"/> <return type="bool"/> </docblock> - <parameter name="wait" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="wait" optional="true" byreference="false" type="int"/> </method> <method name="readunlock" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -26,7 +26,7 @@ <description compact="Waits for an exclusive write lock"/> <return type="bool"/> </docblock> - <parameter name="wait" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="wait" optional="true" byreference="false" type="int"/> </method> <method name="writeunlock" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/SyncSemaphore.xml b/dependencies/php/classes/SyncSemaphore.xml index 209b0e02e33f7231f08087e0e4d507c4f64e2b39..b78b2a188408f76d1cf929db734d7a9bcdcc3475 100644 --- a/dependencies/php/classes/SyncSemaphore.xml +++ b/dependencies/php/classes/SyncSemaphore.xml @@ -6,7 +6,7 @@ <return type="void"/> </docblock> <parameter name="name" optional="true" byreference="false" type="string"/> - <parameter name="initialval" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="initialval" optional="true" byreference="false" type="int"/> <parameter name="autounlock" optional="true" byreference="false" type="object" class="bool"/> </constructor> <method name="lock" abstract="false" static="false" visibility="public" final="false"> @@ -14,13 +14,13 @@ <description compact="Decreases the count of the semaphore or waits"/> <return type="bool"/> </docblock> - <parameter name="wait" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="wait" optional="true" byreference="false" type="int"/> </method> <method name="unlock" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Increases the count of the semaphore"/> <return type="bool"/> </docblock> - <parameter name="prevcount" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="prevcount" optional="true" byreference="false" type="int"/> </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/SyncSharedMemory.xml b/dependencies/php/classes/SyncSharedMemory.xml index 336b52c94fd5a5449be78b3d5f158fde7fc4c1f7..d50b5b9fae5e9c4ff574358b85c01f19618ff48c 100644 --- a/dependencies/php/classes/SyncSharedMemory.xml +++ b/dependencies/php/classes/SyncSharedMemory.xml @@ -6,7 +6,7 @@ <return type="void"/> </docblock> <parameter name="name" optional="false" byreference="false" type="string"/> - <parameter name="size" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="size" optional="false" byreference="false" type="int"/> </constructor> <method name="first" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -19,8 +19,8 @@ <description compact="Copy data from named shared memory"/> <return type="void"/> </docblock> - <parameter name="start" optional="true" byreference="false" type="object" class="integer"/> - <parameter name="length" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="start" optional="true" byreference="false" type="int"/> + <parameter name="length" optional="true" byreference="false" type="int"/> </method> <method name="size" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -34,6 +34,6 @@ <return type="void"/> </docblock> <parameter name="string" optional="true" byreference="false" type="string"/> - <parameter name="start" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="start" optional="true" byreference="false" type="int"/> </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/Thread.xml b/dependencies/php/classes/Thread.xml index 92d7788b6778baa49a4ed3e1ac365346aec304ba..be640486576c3d5931d3c26f45a5b942db7c1d1d 100644 --- a/dependencies/php/classes/Thread.xml +++ b/dependencies/php/classes/Thread.xml @@ -10,7 +10,7 @@ <method name="getCreatorId" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Identification"/> - <return type="integer"/> + <return type="int"/> </docblock> </method> <method name="getCurrentThread" abstract="false" static="false" visibility="public" final="false"> @@ -22,13 +22,13 @@ <method name="getCurrentThreadId" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Identification"/> - <return type="integer"/> + <return type="int"/> </docblock> </method> <method name="getThreadId" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Identification"/> - <return type="integer"/> + <return type="int"/> </docblock> </method> <method name="globally" abstract="false" static="false" visibility="public" final="false"> @@ -40,19 +40,19 @@ <method name="isJoined" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="State Detection"/> - <return type="boolean"/> + <return type="bool"/> </docblock> </method> <method name="isStarted" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="State Detection"/> - <return type="boolean"/> + <return type="bool"/> </docblock> </method> <method name="join" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Synchronization"/> - <return type="boolean"/> + <return type="bool"/> </docblock> </method> <method name="kill" abstract="false" static="false" visibility="public" final="false"> @@ -64,22 +64,22 @@ <method name="start" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Execution"/> - <return type="boolean"/> + <return type="bool"/> </docblock> - <parameter name="options" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="options" optional="true" byreference="false" type="int"/> </method> <method name="chunk" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> <return type="array"/> </docblock> - <parameter name="size" optional="false" byreference="false" type="object" class="integer"/> - <parameter name="preserve" optional="false" byreference="false" type="object" class="boolean"/> + <parameter name="size" optional="false" byreference="false" type="int"/> + <parameter name="preserve" optional="false" byreference="false" type="object" class="bool"/> </method> <method name="count" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="integer"/> + <return type="int"/> </docblock> </method> <method name="extend" abstract="false" static="false" visibility="public" final="false"> @@ -107,31 +107,31 @@ <method name="isRunning" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="boolean"/> + <return type="bool"/> </docblock> </method> <method name="isTerminated" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="boolean"/> + <return type="bool"/> </docblock> </method> <method name="isWaiting" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="boolean"/> + <return type="bool"/> </docblock> </method> <method name="lock" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="boolean"/> + <return type="bool"/> </docblock> </method> <method name="merge" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="boolean"/> + <return type="bool"/> </docblock> <parameter name="from" optional="false" byreference="false" type="object" class="mixed"/> <parameter name="overwrite" optional="true" byreference="false" type="object" class="bool"/> @@ -139,13 +139,19 @@ <method name="notify" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="boolean"/> + <return type="bool"/> + </docblock> + </method> + <method name="notifyOne" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> </docblock> </method> <method name="pop" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="boolean"/> + <return type="bool"/> </docblock> </method> <method name="run" abstract="false" static="false" visibility="public" final="false"> @@ -171,14 +177,14 @@ <method name="unlock" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="boolean"/> + <return type="bool"/> </docblock> </method> <method name="wait" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="boolean"/> + <return type="bool"/> </docblock> - <parameter name="timeout" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="timeout" optional="true" byreference="false" type="int"/> </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/Threaded.xml b/dependencies/php/classes/Threaded.xml index 7e8b5b20dd96bafc3659c5ed998726f2740d8489..599981ec3f68018ee0e9b29df6b6ae455b11ddd5 100644 --- a/dependencies/php/classes/Threaded.xml +++ b/dependencies/php/classes/Threaded.xml @@ -1,18 +1,18 @@ <?xml version="1.0" encoding="UTF-8" ?> <class xmlns="http://xml.phpdox.net/src" full="Threaded" namespace="" name="Threaded"> - <implements name="Traversable" full="Traversable"/> + <implements name="Collectable" full="Collectable"/> <method name="chunk" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Manipulation"/> <return type="array"/> </docblock> - <parameter name="size" optional="false" byreference="false" type="object" class="integer"/> - <parameter name="preserve" optional="false" byreference="false" type="object" class="boolean"/> + <parameter name="size" optional="false" byreference="false" type="int"/> + <parameter name="preserve" optional="false" byreference="false" type="object" class="bool"/> </method> <method name="count" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Manipulation"/> - <return type="integer"/> + <return type="int"/> </docblock> </method> <method name="extend" abstract="false" static="false" visibility="public" final="false"> @@ -40,31 +40,31 @@ <method name="isRunning" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="State Detection"/> - <return type="boolean"/> + <return type="bool"/> </docblock> </method> <method name="isTerminated" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="State Detection"/> - <return type="boolean"/> + <return type="bool"/> </docblock> </method> <method name="isWaiting" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="State Detection"/> - <return type="boolean"/> + <return type="bool"/> </docblock> </method> <method name="lock" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Synchronization"/> - <return type="boolean"/> + <return type="bool"/> </docblock> </method> <method name="merge" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Manipulation"/> - <return type="boolean"/> + <return type="bool"/> </docblock> <parameter name="from" optional="false" byreference="false" type="object" class="mixed"/> <parameter name="overwrite" optional="true" byreference="false" type="object" class="bool"/> @@ -72,13 +72,19 @@ <method name="notify" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Synchronization"/> - <return type="boolean"/> + <return type="bool"/> + </docblock> + </method> + <method name="notifyOne" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Synchronization"/> + <return type="bool"/> </docblock> </method> <method name="pop" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Manipulation"/> - <return type="boolean"/> + <return type="bool"/> </docblock> </method> <method name="run" abstract="false" static="false" visibility="public" final="false"> @@ -104,14 +110,14 @@ <method name="unlock" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Synchronization"/> - <return type="boolean"/> + <return type="bool"/> </docblock> </method> <method name="wait" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Synchronization"/> - <return type="boolean"/> + <return type="bool"/> </docblock> - <parameter name="timeout" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="timeout" optional="true" byreference="false" type="int"/> </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/TypeError.xml b/dependencies/php/classes/TypeError.xml index 91b2d2308997b6a1adc5395554894f57e8ddbaa4..cb9cee6b12cb919389be879c1c4636591918a44c 100644 --- a/dependencies/php/classes/TypeError.xml +++ b/dependencies/php/classes/TypeError.xml @@ -1,6 +1,34 @@ <?xml version="1.0" encoding="UTF-8" ?> <class xmlns="http://xml.phpdox.net/src" full="TypeError" namespace="" name="TypeError"> <extends name="Error" full="Error"/> + <member name="message" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The error message"/> + <var type="string"/> + </docblock> + </member> + <member name="code" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The error code"/> + <var type="int"/> + </docblock> + </member> + <member name="file" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The filename where the error happened"/> + <var type="string"/> + </docblock> + </member> + <member name="line" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The line where the error happened"/> + <var type="int"/> + </docblock> + </member> <method name="getMessage" abstract="false" static="false" visibility="public" final="true"> <docblock> <description compact=""/> diff --git a/dependencies/php/classes/UConverter.xml b/dependencies/php/classes/UConverter.xml index b55f51aab630b3e781e608097da6bade31e40b2c..8caace3deb853ee19c9ed89046bec4b7761fa3cc 100644 --- a/dependencies/php/classes/UConverter.xml +++ b/dependencies/php/classes/UConverter.xml @@ -226,17 +226,17 @@ <description compact="Default "from" callback function"/> <return type="mixed"/> </docblock> - <parameter name="reason" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="reason" optional="false" byreference="false" type="int"/> <parameter name="source" optional="false" byreference="false" type="string"/> <parameter name="codePoint" optional="false" byreference="false" type="string"/> - <parameter name="error" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="error" optional="false" byreference="false" type="int"/> </method> <method name="getAliases" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Get the aliases of the given name"/> <return type="array"/> </docblock> - <parameter name="name" optional="true" byreference="false" type="string"/> + <parameter name="name" optional="false" byreference="false" type="string"/> </method> <method name="getAvailable" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -253,13 +253,13 @@ <method name="getDestinationType" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Get the destination converter type"/> - <return type="integer"/> + <return type="int"/> </docblock> </method> <method name="getErrorCode" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Get last error code on the object"/> - <return type="integer"/> + <return type="int"/> </docblock> </method> <method name="getErrorMessage" abstract="false" static="false" visibility="public" final="false"> @@ -277,7 +277,7 @@ <method name="getSourceType" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Get the source convertor type"/> - <return type="integer"/> + <return type="int"/> </docblock> </method> <method name="getStandards" abstract="false" static="false" visibility="public" final="false"> @@ -297,7 +297,7 @@ <description compact="Get string representation of the callback reason"/> <return type="string"/> </docblock> - <parameter name="reason" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="reason" optional="true" byreference="false" type="int"/> </method> <method name="setDestinationEncoding" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -325,10 +325,10 @@ <description compact="Default "to" callback function"/> <return type="mixed"/> </docblock> - <parameter name="reason" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="reason" optional="false" byreference="false" type="int"/> <parameter name="source" optional="false" byreference="false" type="string"/> <parameter name="codeUnits" optional="false" byreference="false" type="string"/> - <parameter name="error" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="error" optional="false" byreference="false" type="int"/> </method> <method name="transcode" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/UI_Area.xml b/dependencies/php/classes/UI_Area.xml index bf4ae9b9ec114fb6317637729b7f924816bf6abd..d5f37b9777d5f722f9e11064e92ae722428008c0 100644 --- a/dependencies/php/classes/UI_Area.xml +++ b/dependencies/php/classes/UI_Area.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Area" namespace="" name="UI\Area"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Area" namespace="UI" name="Area"> <extends name="UI\Control" full="UI\Control"/> <constant name="Ctrl" value=""> <docblock> @@ -47,8 +47,8 @@ <return type="void"/> </docblock> <parameter name="key" optional="false" byreference="false" type="string"/> - <parameter name="ext" optional="false" byreference="false" type="object" class="integer"/> - <parameter name="flags" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="ext" optional="false" byreference="false" type="int"/> + <parameter name="flags" optional="false" byreference="false" type="int"/> </method> <method name="onMouse" abstract="false" static="false" visibility="protected" final="false"> <docblock> @@ -57,7 +57,7 @@ </docblock> <parameter name="areaPoint" optional="false" byreference="false" type="object" class="UI\Point"/> <parameter name="areaSize" optional="false" byreference="false" type="object" class="UI\Size"/> - <parameter name="flags" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="flags" optional="false" byreference="false" type="int"/> </method> <method name="redraw" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/UI_Control.xml b/dependencies/php/classes/UI_Control.xml index 10ee42a23bc81a59e350e7ea1a3ba99c91d478a5..86562d776415420f67eb205d8c061794ee7c994f 100644 --- a/dependencies/php/classes/UI_Control.xml +++ b/dependencies/php/classes/UI_Control.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Control" namespace="" name="UI\Control"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Control" namespace="UI" name="Control"> <method name="destroy" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Destroy Control"/> diff --git a/dependencies/php/classes/UI_Controls_Box.xml b/dependencies/php/classes/UI_Controls_Box.xml index 9394b16569c3a400fb55f9878416a1ffc74d48f4..f4a8af49858bc1130c657c5ec1abd205e1c6c13d 100644 --- a/dependencies/php/classes/UI_Controls_Box.xml +++ b/dependencies/php/classes/UI_Controls_Box.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\Box" namespace="" name="UI\Controls\Box"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\Box" namespace="UI\Controls" name="Box"> <extends name="UI\Control" full="UI\Control"/> <constant name="Vertical" value=""> <docblock> @@ -22,27 +22,27 @@ <description compact="Construct a new Box"/> <return type="void"/> </docblock> - <parameter name="orientation" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="orientation" optional="true" byreference="false" type="int"/> </constructor> <method name="append" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Append Control"/> - <return type="integer"/> + <return type="int"/> </docblock> <parameter name="control" optional="false" byreference="false" type="object" class="Control"/> - <parameter name="stretchy" optional="true" byreference="false" type="object" class="boolean"/> + <parameter name="stretchy" optional="true" byreference="false" type="object" class="bool"/> </method> <method name="delete" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Delete Control"/> - <return type="boolean"/> + <return type="bool"/> </docblock> - <parameter name="index" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="index" optional="false" byreference="false" type="int"/> </method> <method name="getOrientation" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Get Orientation"/> - <return type="integer"/> + <return type="int"/> </docblock> </method> <method name="isPadded" abstract="false" static="false" visibility="public" final="false"> @@ -56,7 +56,7 @@ <description compact="Set Padding"/> <return type="void"/> </docblock> - <parameter name="padded" optional="false" byreference="false" type="object" class="boolean"/> + <parameter name="padded" optional="false" byreference="false" type="object" class="bool"/> </method> <method name="destroy" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/UI_Controls_Button.xml b/dependencies/php/classes/UI_Controls_Button.xml index d573ae98dab315e3202b980806799be68ead0270..916cd4b79b76ac0a45c131a436b23d371504ee01 100644 --- a/dependencies/php/classes/UI_Controls_Button.xml +++ b/dependencies/php/classes/UI_Controls_Button.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\Button" namespace="" name="UI\Controls\Button"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\Button" namespace="UI\Controls" name="Button"> <extends name="UI\Control" full="UI\Control"/> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/UI_Controls_Check.xml b/dependencies/php/classes/UI_Controls_Check.xml index 96d19af4ead359d126d70227fcc29d165585bef2..b8cdfdefeb79e5fd2aef99fb1b743f1fab2242f4 100644 --- a/dependencies/php/classes/UI_Controls_Check.xml +++ b/dependencies/php/classes/UI_Controls_Check.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\Check" namespace="" name="UI\Controls\Check"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\Check" namespace="UI\Controls" name="Check"> <extends name="UI\Control" full="UI\Control"/> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -31,7 +31,7 @@ <description compact="Set Checked"/> <return type="void"/> </docblock> - <parameter name="checked" optional="false" byreference="false" type="object" class="boolean"/> + <parameter name="checked" optional="false" byreference="false" type="object" class="bool"/> </method> <method name="setText" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/UI_Controls_ColorButton.xml b/dependencies/php/classes/UI_Controls_ColorButton.xml index c5e1e12cd18af20a822a272d65649e444d6202c0..567eb4e2f813e34d1e6a7182a7a5091aceb4a28e 100644 --- a/dependencies/php/classes/UI_Controls_ColorButton.xml +++ b/dependencies/php/classes/UI_Controls_ColorButton.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\ColorButton" namespace="" name="UI\Controls\ColorButton"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\ColorButton" namespace="UI\Controls" name="ColorButton"> <extends name="UI\Control" full="UI\Control"/> <method name="getColor" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -25,7 +25,7 @@ <description compact="Set Color"/> <return type="void"/> </docblock> - <parameter name="color" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="color" optional="false" byreference="false" type="int"/> </method> <method name="destroy" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/UI_Controls_Combo.xml b/dependencies/php/classes/UI_Controls_Combo.xml index d6dcbffa4b74300b056401732e73709e52ef3cb1..145b13d0b1ba74f41c15e928579913e6ea38bc1f 100644 --- a/dependencies/php/classes/UI_Controls_Combo.xml +++ b/dependencies/php/classes/UI_Controls_Combo.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\Combo" namespace="" name="UI\Controls\Combo"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\Combo" namespace="UI\Controls" name="Combo"> <extends name="UI\Control" full="UI\Control"/> <method name="append" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -11,7 +11,7 @@ <method name="getSelected" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Get Selected Option"/> - <return type="integer"/> + <return type="int"/> </docblock> </method> <method name="onSelected" abstract="false" static="false" visibility="protected" final="false"> @@ -25,7 +25,7 @@ <description compact="Set Selected Option"/> <return type="void"/> </docblock> - <parameter name="index" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="index" optional="false" byreference="false" type="int"/> </method> <method name="destroy" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/UI_Controls_EditableCombo.xml b/dependencies/php/classes/UI_Controls_EditableCombo.xml index 8fcdd9eee0518829395006b5c38cbfd577db6068..9317fdb5f3568b4345eb92d2dfe8d708f28294cb 100644 --- a/dependencies/php/classes/UI_Controls_EditableCombo.xml +++ b/dependencies/php/classes/UI_Controls_EditableCombo.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\EditableCombo" namespace="" name="UI\Controls\EditableCombo"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\EditableCombo" namespace="UI\Controls" name="EditableCombo"> <extends name="UI\Control" full="UI\Control"/> <method name="append" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/UI_Controls_Entry.xml b/dependencies/php/classes/UI_Controls_Entry.xml index ea94f06aec79cdc49f884fa3e093331d27601f79..6539f19e7382e90275a772cf84e23a2c2e6cdbf5 100644 --- a/dependencies/php/classes/UI_Controls_Entry.xml +++ b/dependencies/php/classes/UI_Controls_Entry.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\Entry" namespace="" name="UI\Controls\Entry"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\Entry" namespace="UI\Controls" name="Entry"> <extends name="UI\Control" full="UI\Control"/> <constant name="Normal" value=""> <docblock> @@ -21,7 +21,7 @@ <description compact="Construct a new Entry"/> <return type="void"/> </docblock> - <parameter name="type" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="type" optional="true" byreference="false" type="int"/> </constructor> <method name="getText" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -46,7 +46,7 @@ <description compact="Set Read Only"/> <return type="void"/> </docblock> - <parameter name="readOnly" optional="false" byreference="false" type="object" class="boolean"/> + <parameter name="readOnly" optional="false" byreference="false" type="object" class="bool"/> </method> <method name="setText" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/UI_Controls_Form.xml b/dependencies/php/classes/UI_Controls_Form.xml index 710a3e8d25f1ca1358f6b0d00c90549e3346b706..d8d169dd7eb35f5b05af9b9fa89ebf347777f6b2 100644 --- a/dependencies/php/classes/UI_Controls_Form.xml +++ b/dependencies/php/classes/UI_Controls_Form.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\Form" namespace="" name="UI\Controls\Form"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\Form" namespace="UI\Controls" name="Form"> <extends name="UI\Control" full="UI\Control"/> <member name="controls" static="false" visibility="protected"> <default>null</default> @@ -10,18 +10,18 @@ <method name="append" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Append Control"/> - <return type="integer"/> + <return type="int"/> </docblock> <parameter name="label" optional="false" byreference="false" type="string"/> <parameter name="control" optional="false" byreference="false" type="object" class="UI\Control"/> - <parameter name="stretchy" optional="true" byreference="false" type="object" class="boolean"/> + <parameter name="stretchy" optional="true" byreference="false" type="object" class="bool"/> </method> <method name="delete" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Delete Control"/> - <return type="boolean"/> + <return type="bool"/> </docblock> - <parameter name="index" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="index" optional="false" byreference="false" type="int"/> </method> <method name="isPadded" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -34,7 +34,7 @@ <description compact="Set Padding"/> <return type="void"/> </docblock> - <parameter name="padded" optional="false" byreference="false" type="object" class="boolean"/> + <parameter name="padded" optional="false" byreference="false" type="object" class="bool"/> </method> <method name="destroy" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/UI_Controls_Grid.xml b/dependencies/php/classes/UI_Controls_Grid.xml index 0c185e065e6ef37b1e09404a27697a3f38956343..94138ad97d3b36510483165846254329539a435d 100644 --- a/dependencies/php/classes/UI_Controls_Grid.xml +++ b/dependencies/php/classes/UI_Controls_Grid.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\Grid" namespace="" name="UI\Controls\Grid"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\Grid" namespace="UI\Controls" name="Grid"> <extends name="UI\Control" full="UI\Control"/> <constant name="Fill" value=""> <docblock> @@ -53,14 +53,14 @@ <return type="void"/> </docblock> <parameter name="control" optional="false" byreference="false" type="object" class="UI\Control"/> - <parameter name="left" optional="false" byreference="false" type="object" class="integer"/> - <parameter name="top" optional="false" byreference="false" type="object" class="integer"/> - <parameter name="xspan" optional="false" byreference="false" type="object" class="integer"/> - <parameter name="yspan" optional="false" byreference="false" type="object" class="integer"/> - <parameter name="hexpand" optional="false" byreference="false" type="object" class="boolean"/> - <parameter name="halign" optional="false" byreference="false" type="object" class="integer"/> - <parameter name="vexpand" optional="false" byreference="false" type="object" class="boolean"/> - <parameter name="valign" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="left" optional="false" byreference="false" type="int"/> + <parameter name="top" optional="false" byreference="false" type="int"/> + <parameter name="xspan" optional="false" byreference="false" type="int"/> + <parameter name="yspan" optional="false" byreference="false" type="int"/> + <parameter name="hexpand" optional="false" byreference="false" type="object" class="bool"/> + <parameter name="halign" optional="false" byreference="false" type="int"/> + <parameter name="vexpand" optional="false" byreference="false" type="object" class="bool"/> + <parameter name="valign" optional="false" byreference="false" type="int"/> </method> <method name="isPadded" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -73,7 +73,7 @@ <description compact="Set Padding"/> <return type="void"/> </docblock> - <parameter name="padding" optional="false" byreference="false" type="object" class="boolean"/> + <parameter name="padding" optional="false" byreference="false" type="object" class="bool"/> </method> <method name="destroy" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/UI_Controls_Group.xml b/dependencies/php/classes/UI_Controls_Group.xml index 2580cfef1f6513b8b6481e592aaa7bc130971e92..72d7cc68a5cf4944ec5cabfb59efca5130aca9f6 100644 --- a/dependencies/php/classes/UI_Controls_Group.xml +++ b/dependencies/php/classes/UI_Controls_Group.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\Group" namespace="" name="UI\Controls\Group"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\Group" namespace="UI\Controls" name="Group"> <extends name="UI\Control" full="UI\Control"/> <member name="controls" static="false" visibility="protected"> <default>null</default> @@ -38,7 +38,7 @@ <description compact="Set Margin"/> <return type="void"/> </docblock> - <parameter name="margin" optional="false" byreference="false" type="object" class="boolean"/> + <parameter name="margin" optional="false" byreference="false" type="object" class="bool"/> </method> <method name="setTitle" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/UI_Controls_Label.xml b/dependencies/php/classes/UI_Controls_Label.xml index dbc6d30cf6df573b782b0c9d9eda80f7d8f1cc00..5fed4b11a5da16cb599abf8b901cefba7b2e2ad9 100644 --- a/dependencies/php/classes/UI_Controls_Label.xml +++ b/dependencies/php/classes/UI_Controls_Label.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\Label" namespace="" name="UI\Controls\Label"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\Label" namespace="UI\Controls" name="Label"> <extends name="UI\Control" full="UI\Control"/> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/UI_Controls_MultilineEntry.xml b/dependencies/php/classes/UI_Controls_MultilineEntry.xml index c60d2f1ee8675a57b901284141e64cda3e14a021..ba48c1829b96d3d64312ef4c567e0bd739b774bf 100644 --- a/dependencies/php/classes/UI_Controls_MultilineEntry.xml +++ b/dependencies/php/classes/UI_Controls_MultilineEntry.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\MultilineEntry" namespace="" name="UI\Controls\MultilineEntry"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\MultilineEntry" namespace="UI\Controls" name="MultilineEntry"> <extends name="UI\Control" full="UI\Control"/> <constant name="Wrap" value=""> <docblock> @@ -16,7 +16,7 @@ <description compact="Construct a new Multiline Entry"/> <return type="void"/> </docblock> - <parameter name="type" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="type" optional="true" byreference="false" type="int"/> </constructor> <method name="append" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -48,7 +48,7 @@ <description compact="Set Read Only"/> <return type="void"/> </docblock> - <parameter name="readOnly" optional="false" byreference="false" type="object" class="boolean"/> + <parameter name="readOnly" optional="false" byreference="false" type="object" class="bool"/> </method> <method name="setText" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/UI_Controls_Picker.xml b/dependencies/php/classes/UI_Controls_Picker.xml index b8fd93c533b037fcd65c1c7f88e0fdd9123fac9a..54af4b247a8a67be388d292ae7caa6f7d13f8843 100644 --- a/dependencies/php/classes/UI_Controls_Picker.xml +++ b/dependencies/php/classes/UI_Controls_Picker.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\Picker" namespace="" name="UI\Controls\Picker"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\Picker" namespace="UI\Controls" name="Picker"> <extends name="UI\Control" full="UI\Control"/> <constant name="Date" value=""> <docblock> @@ -21,7 +21,7 @@ <description compact="Construct a new Picker"/> <return type="void"/> </docblock> - <parameter name="type" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="type" optional="true" byreference="false" type="int"/> </constructor> <method name="destroy" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/UI_Controls_Progress.xml b/dependencies/php/classes/UI_Controls_Progress.xml index 48444525a7f940cc5f3e1b7e34f60598efb572c3..6b3f6c0be19ecab5a36a1c2bc0d892312530956a 100644 --- a/dependencies/php/classes/UI_Controls_Progress.xml +++ b/dependencies/php/classes/UI_Controls_Progress.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\Progress" namespace="" name="UI\Controls\Progress"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\Progress" namespace="UI\Controls" name="Progress"> <extends name="UI\Control" full="UI\Control"/> <method name="getValue" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -12,7 +12,7 @@ <description compact="Set Value"/> <return type="void"/> </docblock> - <parameter name="value" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="value" optional="false" byreference="false" type="int"/> </method> <method name="destroy" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/UI_Controls_Radio.xml b/dependencies/php/classes/UI_Controls_Radio.xml index 57e853d28b2e8663a9e4a9043c9c9f2645208338..b0df79c278ae7857e41544053cb24f9a74420d9d 100644 --- a/dependencies/php/classes/UI_Controls_Radio.xml +++ b/dependencies/php/classes/UI_Controls_Radio.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\Radio" namespace="" name="UI\Controls\Radio"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\Radio" namespace="UI\Controls" name="Radio"> <extends name="UI\Control" full="UI\Control"/> <method name="append" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -11,7 +11,7 @@ <method name="getSelected" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Get Selected Option"/> - <return type="integer"/> + <return type="int"/> </docblock> </method> <method name="onSelected" abstract="false" static="false" visibility="protected" final="false"> @@ -25,7 +25,7 @@ <description compact="Set Selected Option"/> <return type="void"/> </docblock> - <parameter name="index" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="index" optional="false" byreference="false" type="int"/> </method> <method name="destroy" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/UI_Controls_Separator.xml b/dependencies/php/classes/UI_Controls_Separator.xml index 918221e6ac96e56818914c300cf8146596863e4f..81000e5e12a6c54f541a9f80f622f158b700fa17 100644 --- a/dependencies/php/classes/UI_Controls_Separator.xml +++ b/dependencies/php/classes/UI_Controls_Separator.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\Separator" namespace="" name="UI\Controls\Separator"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\Separator" namespace="UI\Controls" name="Separator"> <extends name="UI\Control" full="UI\Control"/> <constant name="Horizontal" value=""> <docblock> @@ -16,7 +16,7 @@ <description compact="Construct a new Separator"/> <return type="void"/> </docblock> - <parameter name="type" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="type" optional="true" byreference="false" type="int"/> </constructor> <method name="destroy" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/UI_Controls_Slider.xml b/dependencies/php/classes/UI_Controls_Slider.xml index 69631f8825df1317926c1f218a7e088c2a0e9180..c9c4b2ff9458fab3329468a92efa7df2a642c64b 100644 --- a/dependencies/php/classes/UI_Controls_Slider.xml +++ b/dependencies/php/classes/UI_Controls_Slider.xml @@ -1,18 +1,18 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\Slider" namespace="" name="UI\Controls\Slider"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\Slider" namespace="UI\Controls" name="Slider"> <extends name="UI\Control" full="UI\Control"/> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Construct a new Slider"/> <return type="void"/> </docblock> - <parameter name="min" optional="false" byreference="false" type="object" class="integer"/> - <parameter name="max" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="min" optional="false" byreference="false" type="int"/> + <parameter name="max" optional="false" byreference="false" type="int"/> </constructor> <method name="getValue" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Get Value"/> - <return type="integer"/> + <return type="int"/> </docblock> </method> <method name="onChange" abstract="false" static="false" visibility="protected" final="false"> @@ -26,7 +26,7 @@ <description compact="Set Value"/> <return type="void"/> </docblock> - <parameter name="value" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="value" optional="false" byreference="false" type="int"/> </method> <method name="destroy" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/UI_Controls_Spin.xml b/dependencies/php/classes/UI_Controls_Spin.xml index 60b30ed083c9bfc2f2e6aa8db446acc44940d0d1..24bb1c06d1f382060238eaa26415d7b8e6af645f 100644 --- a/dependencies/php/classes/UI_Controls_Spin.xml +++ b/dependencies/php/classes/UI_Controls_Spin.xml @@ -1,13 +1,13 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\Spin" namespace="" name="UI\Controls\Spin"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\Spin" namespace="UI\Controls" name="Spin"> <extends name="UI\Control" full="UI\Control"/> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Construct a new Spin"/> <return type="void"/> </docblock> - <parameter name="min" optional="false" byreference="false" type="object" class="integer"/> - <parameter name="max" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="min" optional="false" byreference="false" type="int"/> + <parameter name="max" optional="false" byreference="false" type="int"/> </constructor> <method name="getValue" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -26,7 +26,7 @@ <description compact="Set Value"/> <return type="void"/> </docblock> - <parameter name="value" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="value" optional="false" byreference="false" type="int"/> </method> <method name="destroy" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/UI_Controls_Tab.xml b/dependencies/php/classes/UI_Controls_Tab.xml index b4a8ce90e377df644d3e3e7da39dd733268f62cf..62851ae1431e8cbe632c9db12561528267f5f11b 100644 --- a/dependencies/php/classes/UI_Controls_Tab.xml +++ b/dependencies/php/classes/UI_Controls_Tab.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\Tab" namespace="" name="UI\Controls\Tab"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Controls\Tab" namespace="UI\Controls" name="Tab"> <extends name="UI\Control" full="UI\Control"/> <member name="controls" static="false" visibility="protected"> <default>null</default> @@ -10,7 +10,7 @@ <method name="append" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Append Page"/> - <return type="integer"/> + <return type="int"/> </docblock> <parameter name="name" optional="false" byreference="false" type="string"/> <parameter name="control" optional="false" byreference="false" type="object" class="UI\Control"/> @@ -18,16 +18,16 @@ <method name="delete" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Delete Page"/> - <return type="boolean"/> + <return type="bool"/> </docblock> - <parameter name="index" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="index" optional="false" byreference="false" type="int"/> </method> <method name="hasMargin" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Margin Detection"/> <return type="bool"/> </docblock> - <parameter name="page" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="page" optional="false" byreference="false" type="int"/> </method> <method name="insertAt" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -35,13 +35,13 @@ <return type="void"/> </docblock> <parameter name="name" optional="false" byreference="false" type="string"/> - <parameter name="page" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="page" optional="false" byreference="false" type="int"/> <parameter name="control" optional="false" byreference="false" type="object" class="UI\Control"/> </method> <method name="pages" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Page Count"/> - <return type="integer"/> + <return type="int"/> </docblock> </method> <method name="setMargin" abstract="false" static="false" visibility="public" final="false"> @@ -49,8 +49,8 @@ <description compact="Set Margin"/> <return type="void"/> </docblock> - <parameter name="page" optional="false" byreference="false" type="object" class="integer"/> - <parameter name="margin" optional="false" byreference="false" type="object" class="boolean"/> + <parameter name="page" optional="false" byreference="false" type="int"/> + <parameter name="margin" optional="false" byreference="false" type="object" class="bool"/> </method> <method name="destroy" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/UI_Draw_Brush.xml b/dependencies/php/classes/UI_Draw_Brush.xml index 58930c96b722a209acbd143bd33be00e5ad06e7f..68616f0296e577eaf3a1183f71d5e623a696f45c 100644 --- a/dependencies/php/classes/UI_Draw_Brush.xml +++ b/dependencies/php/classes/UI_Draw_Brush.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Draw\Brush" namespace="" name="UI\Draw\Brush"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Draw\Brush" namespace="UI\Draw" name="Brush"> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Construct a new Brush"/> @@ -12,7 +12,7 @@ <description compact="Construct a new Brush"/> <return type="void"/> </docblock> - <parameter name="color" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="color" optional="false" byreference="false" type="int"/> </constructor> <method name="getColor" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -32,6 +32,6 @@ <description compact="Set Color"/> <return type="void"/> </docblock> - <parameter name="color" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="color" optional="false" byreference="false" type="int"/> </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/UI_Draw_Brush_Gradient.xml b/dependencies/php/classes/UI_Draw_Brush_Gradient.xml index 4a0a9d8c91ba8144dec9dc524059995a1e2eee7a..e8c9afd5693954479e4ea006a2fd1509f1093b74 100644 --- a/dependencies/php/classes/UI_Draw_Brush_Gradient.xml +++ b/dependencies/php/classes/UI_Draw_Brush_Gradient.xml @@ -1,10 +1,10 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Draw\Brush\Gradient" namespace="" name="UI\Draw\Brush\Gradient"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Draw\Brush\Gradient" namespace="UI\Draw\Brush" name="Gradient"> <extends name="UI\Draw\Brush\Gradient" full="UI\Draw\Brush\Gradient"/> <method name="addStop" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Stop Manipulation"/> - <return type="integer"/> + <return type="int"/> </docblock> <parameter name="position" optional="false" byreference="false" type="object" class="float"/> <parameter name="color" optional="false" byreference="false" type="object" class="UI\Draw\Color"/> @@ -12,35 +12,35 @@ <method name="addStop" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Stop Manipulation"/> - <return type="integer"/> + <return type="int"/> </docblock> <parameter name="position" optional="false" byreference="false" type="object" class="float"/> - <parameter name="color" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="color" optional="false" byreference="false" type="int"/> </method> <method name="delStop" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Stop Manipulation"/> - <return type="integer"/> + <return type="int"/> </docblock> - <parameter name="index" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="index" optional="false" byreference="false" type="int"/> </method> <method name="setStop" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Stop Manipulation"/> - <return type="boolean"/> + <return type="bool"/> </docblock> - <parameter name="index" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="index" optional="false" byreference="false" type="int"/> <parameter name="position" optional="false" byreference="false" type="object" class="float"/> <parameter name="color" optional="false" byreference="false" type="object" class="UI\Draw\Color"/> </method> <method name="setStop" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Stop Manipulation"/> - <return type="boolean"/> + <return type="bool"/> </docblock> - <parameter name="index" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="index" optional="false" byreference="false" type="int"/> <parameter name="position" optional="false" byreference="false" type="object" class="float"/> - <parameter name="color" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="color" optional="false" byreference="false" type="int"/> </method> <method name="getColor" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -60,6 +60,6 @@ <description compact=""/> <return type="void"/> </docblock> - <parameter name="color" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="color" optional="false" byreference="false" type="int"/> </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/UI_Draw_Brush_LinearGradient.xml b/dependencies/php/classes/UI_Draw_Brush_LinearGradient.xml index de531b5a8137162479837b911064e162d81865a8..27b3c5aa5ecb4080d9a19ac5e936618efad47f41 100644 --- a/dependencies/php/classes/UI_Draw_Brush_LinearGradient.xml +++ b/dependencies/php/classes/UI_Draw_Brush_LinearGradient.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Draw\Brush\LinearGradient" namespace="" name="UI\Draw\Brush\LinearGradient"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Draw\Brush\LinearGradient" namespace="UI\Draw\Brush" name="LinearGradient"> <extends name="UI\Draw\Brush\Gradient" full="UI\Draw\Brush\Gradient"/> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -12,7 +12,7 @@ <method name="addStop" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="integer"/> + <return type="int"/> </docblock> <parameter name="position" optional="false" byreference="false" type="object" class="float"/> <parameter name="color" optional="false" byreference="false" type="object" class="UI\Draw\Color"/> @@ -20,34 +20,34 @@ <method name="addStop" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="integer"/> + <return type="int"/> </docblock> <parameter name="position" optional="false" byreference="false" type="object" class="float"/> - <parameter name="color" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="color" optional="false" byreference="false" type="int"/> </method> <method name="delStop" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="integer"/> + <return type="int"/> </docblock> - <parameter name="index" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="index" optional="false" byreference="false" type="int"/> </method> <method name="setStop" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="boolean"/> + <return type="bool"/> </docblock> - <parameter name="index" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="index" optional="false" byreference="false" type="int"/> <parameter name="position" optional="false" byreference="false" type="object" class="float"/> <parameter name="color" optional="false" byreference="false" type="object" class="UI\Draw\Color"/> </method> <method name="setStop" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="boolean"/> + <return type="bool"/> </docblock> - <parameter name="index" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="index" optional="false" byreference="false" type="int"/> <parameter name="position" optional="false" byreference="false" type="object" class="float"/> - <parameter name="color" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="color" optional="false" byreference="false" type="int"/> </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/UI_Draw_Brush_RadialGradient.xml b/dependencies/php/classes/UI_Draw_Brush_RadialGradient.xml index ef502eaca778d4d434151e0395312391dc41fc60..ce2d9d6c096b29cbed12604db4a8f0f2111a2df0 100644 --- a/dependencies/php/classes/UI_Draw_Brush_RadialGradient.xml +++ b/dependencies/php/classes/UI_Draw_Brush_RadialGradient.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Draw\Brush\RadialGradient" namespace="" name="UI\Draw\Brush\RadialGradient"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Draw\Brush\RadialGradient" namespace="UI\Draw\Brush" name="RadialGradient"> <extends name="UI\Draw\Brush\Gradient" full="UI\Draw\Brush\Gradient"/> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -13,7 +13,7 @@ <method name="addStop" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="integer"/> + <return type="int"/> </docblock> <parameter name="position" optional="false" byreference="false" type="object" class="float"/> <parameter name="color" optional="false" byreference="false" type="object" class="UI\Draw\Color"/> @@ -21,34 +21,34 @@ <method name="addStop" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="integer"/> + <return type="int"/> </docblock> <parameter name="position" optional="false" byreference="false" type="object" class="float"/> - <parameter name="color" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="color" optional="false" byreference="false" type="int"/> </method> <method name="delStop" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="integer"/> + <return type="int"/> </docblock> - <parameter name="index" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="index" optional="false" byreference="false" type="int"/> </method> <method name="setStop" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="boolean"/> + <return type="bool"/> </docblock> - <parameter name="index" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="index" optional="false" byreference="false" type="int"/> <parameter name="position" optional="false" byreference="false" type="object" class="float"/> <parameter name="color" optional="false" byreference="false" type="object" class="UI\Draw\Color"/> </method> <method name="setStop" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="boolean"/> + <return type="bool"/> </docblock> - <parameter name="index" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="index" optional="false" byreference="false" type="int"/> <parameter name="position" optional="false" byreference="false" type="object" class="float"/> - <parameter name="color" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="color" optional="false" byreference="false" type="int"/> </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/UI_Draw_Color.xml b/dependencies/php/classes/UI_Draw_Color.xml index 375ad25f6488553ae74cee570f03b6855354dbd5..ab2bb99f525488408d831457e20d4817567d4d86 100644 --- a/dependencies/php/classes/UI_Draw_Color.xml +++ b/dependencies/php/classes/UI_Draw_Color.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Draw\Color" namespace="" name="UI\Draw\Color"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Draw\Color" namespace="UI\Draw" name="Color"> <constant name="Red" value=""> <docblock> <var type="integer"/> @@ -56,21 +56,21 @@ <description compact="Construct new Color"/> <return type="void"/> </docblock> - <parameter name="color" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="color" optional="true" byreference="false" type="int"/> </constructor> <method name="getChannel" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Color Manipulation"/> <return type="float"/> </docblock> - <parameter name="channel" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="channel" optional="false" byreference="false" type="int"/> </method> <method name="setChannel" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Color Manipulation"/> <return type="void"/> </docblock> - <parameter name="channel" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="channel" optional="false" byreference="false" type="int"/> <parameter name="value" optional="false" byreference="false" type="object" class="float"/> </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/UI_Draw_Line_Cap.xml b/dependencies/php/classes/UI_Draw_Line_Cap.xml index cd7985e9348a068cc7e6337068f5ea338bcfdce2..2d5a992d37a34cf54fcd1c80d6eab1a735d1fc53 100644 --- a/dependencies/php/classes/UI_Draw_Line_Cap.xml +++ b/dependencies/php/classes/UI_Draw_Line_Cap.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Draw\Line\Cap" namespace="" name="UI\Draw\Line\Cap"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Draw\Line\Cap" namespace="UI\Draw\Line" name="Cap"> <constant name="Flat" value=""> <docblock> <var type="integer"/> diff --git a/dependencies/php/classes/UI_Draw_Line_Join.xml b/dependencies/php/classes/UI_Draw_Line_Join.xml index 8bd34bc2b28117a7c82780803e0824e9a4854885..bd9373ce44a436d9ff64d9e028e8a01a2ec38c76 100644 --- a/dependencies/php/classes/UI_Draw_Line_Join.xml +++ b/dependencies/php/classes/UI_Draw_Line_Join.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Draw\Line\Join" namespace="" name="UI\Draw\Line\Join"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Draw\Line\Join" namespace="UI\Draw\Line" name="Join"> <constant name="Miter" value=""> <docblock> <var type="integer"/> diff --git a/dependencies/php/classes/UI_Draw_Matrix.xml b/dependencies/php/classes/UI_Draw_Matrix.xml index 97683a3ccdd4b28b1a8033f43463ac52dcdb1c15..c6c156ee0cc19e1839ad30c4d5a431d5c79d2c0f 100644 --- a/dependencies/php/classes/UI_Draw_Matrix.xml +++ b/dependencies/php/classes/UI_Draw_Matrix.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Draw\Matrix" namespace="" name="UI\Draw\Matrix"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Draw\Matrix" namespace="UI\Draw" name="Matrix"> <method name="invert" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Invert Matrix"/> diff --git a/dependencies/php/classes/UI_Draw_Path.xml b/dependencies/php/classes/UI_Draw_Path.xml index 9b9245db7737d4fa26cf9f5acb1f22e302a828ef..7eed2168b55d8b552df0fb80a09f1b84c466c4a9 100644 --- a/dependencies/php/classes/UI_Draw_Path.xml +++ b/dependencies/php/classes/UI_Draw_Path.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Draw\Path" namespace="" name="UI\Draw\Path"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Draw\Path" namespace="UI\Draw" name="Path"> <constant name="Winding" value=""> <docblock> <var type="integer"/> @@ -15,7 +15,7 @@ <description compact="Construct a new Path"/> <return type="void"/> </docblock> - <parameter name="mode" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="mode" optional="true" byreference="false" type="int"/> </constructor> <method name="addRectangle" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/UI_Draw_Pen.xml b/dependencies/php/classes/UI_Draw_Pen.xml index 7023b88cb1ba2904d0593df9928fbe3deee388b2..4da7f39798574f5ac9bebec26fdd73de2e4bb596 100644 --- a/dependencies/php/classes/UI_Draw_Pen.xml +++ b/dependencies/php/classes/UI_Draw_Pen.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Draw\Pen" namespace="" name="UI\Draw\Pen"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Draw\Pen" namespace="UI\Draw" name="Pen"> <method name="clip" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Clip a Path"/> @@ -29,7 +29,7 @@ <return type="void"/> </docblock> <parameter name="path" optional="false" byreference="false" type="object" class="UI\Draw\Path"/> - <parameter name="with" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="with" optional="false" byreference="false" type="int"/> </method> <method name="restore" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -67,7 +67,7 @@ <return type="void"/> </docblock> <parameter name="path" optional="false" byreference="false" type="object" class="UI\Draw\Path"/> - <parameter name="with" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="with" optional="false" byreference="false" type="int"/> <parameter name="stroke" optional="false" byreference="false" type="object" class="UI\Draw\Stroke"/> </method> <method name="transform" abstract="false" static="false" visibility="public" final="false"> diff --git a/dependencies/php/classes/UI_Draw_Stroke.xml b/dependencies/php/classes/UI_Draw_Stroke.xml index 7f6ef75fa7779d3121431f4e47b778a05f355be1..6a53bd14f1fa5a9bc3c34d27ebf8064e5fc5c4bf 100644 --- a/dependencies/php/classes/UI_Draw_Stroke.xml +++ b/dependencies/php/classes/UI_Draw_Stroke.xml @@ -1,25 +1,25 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Draw\Stroke" namespace="" name="UI\Draw\Stroke"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Draw\Stroke" namespace="UI\Draw" name="Stroke"> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Construct a new Stroke"/> <return type="void"/> </docblock> - <parameter name="cap" optional="true" byreference="false" type="object" class="integer"/> - <parameter name="join" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="cap" optional="true" byreference="false" type="int"/> + <parameter name="join" optional="true" byreference="false" type="int"/> <parameter name="thickness" optional="true" byreference="false" type="object" class="float"/> <parameter name="miterLimit" optional="true" byreference="false" type="object" class="float"/> </constructor> <method name="getCap" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Get Line Cap"/> - <return type="integer"/> + <return type="int"/> </docblock> </method> <method name="getJoin" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Get Line Join"/> - <return type="integer"/> + <return type="int"/> </docblock> </method> <method name="getMiterLimit" abstract="false" static="false" visibility="public" final="false"> @@ -39,14 +39,14 @@ <description compact="Set Line Cap"/> <return type="void"/> </docblock> - <parameter name="cap" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="cap" optional="false" byreference="false" type="int"/> </method> <method name="setJoin" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Set Line Join"/> <return type="void"/> </docblock> - <parameter name="join" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="join" optional="false" byreference="false" type="int"/> </method> <method name="setMiterLimit" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/UI_Draw_Text_Font.xml b/dependencies/php/classes/UI_Draw_Text_Font.xml index 3a9ef31996f46d6970672b3a8174bdeaace1be30..8a731914f8b7064e3ea8c6a256d5907b0f560400 100644 --- a/dependencies/php/classes/UI_Draw_Text_Font.xml +++ b/dependencies/php/classes/UI_Draw_Text_Font.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Draw\Text\Font" namespace="" name="UI\Draw\Text\Font"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Draw\Text\Font" namespace="UI\Draw\Text" name="Font"> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Construct a new Font"/> diff --git a/dependencies/php/classes/UI_Draw_Text_Font_Descriptor.xml b/dependencies/php/classes/UI_Draw_Text_Font_Descriptor.xml index 0512374994edf54a46e0d9c5360f1d77002f3880..2733eb91982e260b38d3f40654010f3435e9308e 100644 --- a/dependencies/php/classes/UI_Draw_Text_Font_Descriptor.xml +++ b/dependencies/php/classes/UI_Draw_Text_Font_Descriptor.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Draw\Text\Font\Descriptor" namespace="" name="UI\Draw\Text\Font\Descriptor"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Draw\Text\Font\Descriptor" namespace="UI\Draw\Text\Font" name="Descriptor"> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Construct a new Font Descriptor"/> @@ -7,9 +7,9 @@ </docblock> <parameter name="family" optional="false" byreference="false" type="string"/> <parameter name="size" optional="false" byreference="false" type="object" class="float"/> - <parameter name="weight" optional="true" byreference="false" type="object" class="integer"/> - <parameter name="italic" optional="true" byreference="false" type="object" class="integer"/> - <parameter name="stretch" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="weight" optional="true" byreference="false" type="int"/> + <parameter name="italic" optional="true" byreference="false" type="int"/> + <parameter name="stretch" optional="true" byreference="false" type="int"/> </constructor> <method name="getFamily" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/UI_Draw_Text_Font_Italic.xml b/dependencies/php/classes/UI_Draw_Text_Font_Italic.xml index e6451dc47b0ede888b7da5c98037feda35934330..da1fc49eaf9c583bdd4b30c2d08832e7ff087cb1 100644 --- a/dependencies/php/classes/UI_Draw_Text_Font_Italic.xml +++ b/dependencies/php/classes/UI_Draw_Text_Font_Italic.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Draw\Text\Font\Italic" namespace="" name="UI\Draw\Text\Font\Italic"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Draw\Text\Font\Italic" namespace="UI\Draw\Text\Font" name="Italic"> <constant name="Normal" value="0"> <docblock> <var type="integer"/> diff --git a/dependencies/php/classes/UI_Draw_Text_Font_Stretch.xml b/dependencies/php/classes/UI_Draw_Text_Font_Stretch.xml index 86349b625cd8ac2c68b2365da5ee7a2297701720..5dffffe4074ae5de749c9787e9fd15c920e1296f 100644 --- a/dependencies/php/classes/UI_Draw_Text_Font_Stretch.xml +++ b/dependencies/php/classes/UI_Draw_Text_Font_Stretch.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Draw\Text\Font\Stretch" namespace="" name="UI\Draw\Text\Font\Stretch"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Draw\Text\Font\Stretch" namespace="UI\Draw\Text\Font" name="Stretch"> <constant name="UltraCondensed" value="0"> <docblock> <var type="integer"/> diff --git a/dependencies/php/classes/UI_Draw_Text_Font_Weight.xml b/dependencies/php/classes/UI_Draw_Text_Font_Weight.xml index 24e48f3f1f5c40f69a0fca52869500a5ac75e351..19f68ef62254b561dee8ddeb0dc167517f74229b 100644 --- a/dependencies/php/classes/UI_Draw_Text_Font_Weight.xml +++ b/dependencies/php/classes/UI_Draw_Text_Font_Weight.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Draw\Text\Font\Weight" namespace="" name="UI\Draw\Text\Font\Weight"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Draw\Text\Font\Weight" namespace="UI\Draw\Text\Font" name="Weight"> <constant name="Thin" value=""> <docblock> <var type="integer"/> diff --git a/dependencies/php/classes/UI_Draw_Text_Layout.xml b/dependencies/php/classes/UI_Draw_Text_Layout.xml index 1f948705cfd2c6c7707347612b2dda6c52ba08c9..8428012244af56ab89246e88412484ba3c5ef359 100644 --- a/dependencies/php/classes/UI_Draw_Text_Layout.xml +++ b/dependencies/php/classes/UI_Draw_Text_Layout.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Draw\Text\Layout" namespace="" name="UI\Draw\Text\Layout"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Draw\Text\Layout" namespace="UI\Draw\Text" name="Layout"> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Construct a new Text Layout"/> @@ -15,17 +15,17 @@ <return type="void"/> </docblock> <parameter name="color" optional="false" byreference="false" type="object" class="UI\Draw\Color"/> - <parameter name="start" optional="true" byreference="false" type="object" class="integer"/> - <parameter name="end" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="start" optional="true" byreference="false" type="int"/> + <parameter name="end" optional="true" byreference="false" type="int"/> </method> <method name="setColor" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Set Color"/> <return type="void"/> </docblock> - <parameter name="color" optional="false" byreference="false" type="object" class="integer"/> - <parameter name="start" optional="true" byreference="false" type="object" class="integer"/> - <parameter name="end" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="color" optional="false" byreference="false" type="int"/> + <parameter name="start" optional="true" byreference="false" type="int"/> + <parameter name="end" optional="true" byreference="false" type="int"/> </method> <method name="setWidth" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/UI_Exception_InvalidArgumentException.xml b/dependencies/php/classes/UI_Exception_InvalidArgumentException.xml index 9ab0d733fa070816f492edd07223fe7113785206..a4ed5a95ff1ebc222db51bfeaea96eca1e0ca60e 100644 --- a/dependencies/php/classes/UI_Exception_InvalidArgumentException.xml +++ b/dependencies/php/classes/UI_Exception_InvalidArgumentException.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Exception\InvalidArgumentException" namespace="" name="UI\Exception\InvalidArgumentException"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Exception\InvalidArgumentException" namespace="UI\Exception" name="InvalidArgumentException"> <implements name="Throwable" full="Throwable"/> <member name="message" static="false" visibility="protected"> <default>null</default> diff --git a/dependencies/php/classes/UI_Exception_RuntimeException.xml b/dependencies/php/classes/UI_Exception_RuntimeException.xml index 366952f977c1fd2b5965a42476959c09adeaf69e..e3fa04d8b97df9a955941cd5c632fa5bf5f929fe 100644 --- a/dependencies/php/classes/UI_Exception_RuntimeException.xml +++ b/dependencies/php/classes/UI_Exception_RuntimeException.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Exception\RuntimeException" namespace="" name="UI\Exception\RuntimeException"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Exception\RuntimeException" namespace="UI\Exception" name="RuntimeException"> <implements name="Throwable" full="Throwable"/> <member name="message" static="false" visibility="protected"> <default>null</default> diff --git a/dependencies/php/classes/UI_Executor.xml b/dependencies/php/classes/UI_Executor.xml index 13e685992206a7d82d5ef1301ebddd6fa4d6e6f1..5826d0d5d9f98548002bc6db7c907adf9b0fa6d7 100644 --- a/dependencies/php/classes/UI_Executor.xml +++ b/dependencies/php/classes/UI_Executor.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Executor" namespace="" name="UI\Executor"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Executor" namespace="UI" name="Executor"> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Construct a new Executor"/> @@ -11,15 +11,15 @@ <description compact="Construct a new Executor"/> <return type="void"/> </docblock> - <parameter name="microseconds" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="microseconds" optional="false" byreference="false" type="int"/> </constructor> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Construct a new Executor"/> <return type="void"/> </docblock> - <parameter name="seconds" optional="false" byreference="false" type="object" class="integer"/> - <parameter name="microseconds" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="seconds" optional="false" byreference="false" type="int"/> + <parameter name="microseconds" optional="false" byreference="false" type="int"/> </constructor> <method name="kill" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -38,14 +38,14 @@ <description compact="Interval Manipulation"/> <return type="bool"/> </docblock> - <parameter name="microseconds" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="microseconds" optional="false" byreference="false" type="int"/> </method> <method name="setInterval" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Interval Manipulation"/> <return type="bool"/> </docblock> - <parameter name="seconds" optional="false" byreference="false" type="object" class="integer"/> - <parameter name="microseconds" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="seconds" optional="false" byreference="false" type="int"/> + <parameter name="microseconds" optional="false" byreference="false" type="int"/> </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/UI_Key.xml b/dependencies/php/classes/UI_Key.xml index fe411d98997644bc7e559931ff84814188012cea..cbb85274bed3ef4f771754e9f39bfb79a55248a5 100644 --- a/dependencies/php/classes/UI_Key.xml +++ b/dependencies/php/classes/UI_Key.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Key" namespace="" name="UI\Key"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Key" namespace="UI" name="Key"> <constant name="Escape" value=""> <docblock> <var type="integer"/> diff --git a/dependencies/php/classes/UI_Menu.xml b/dependencies/php/classes/UI_Menu.xml index 05ce3d88075beebf66a73b83432a3993bff114d3..77092fea34d4d181c0317dc1ab76118bce7cd7a7 100644 --- a/dependencies/php/classes/UI_Menu.xml +++ b/dependencies/php/classes/UI_Menu.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Menu" namespace="" name="UI\Menu"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Menu" namespace="UI" name="Menu"> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Construct a new Menu"/> diff --git a/dependencies/php/classes/UI_MenuItem.xml b/dependencies/php/classes/UI_MenuItem.xml index 2b5e5f1bfd6bd1fba45e209a9ba93715bb3a11be..7174fdc7568341d46ab24a744c0f25d2b6b57d3b 100644 --- a/dependencies/php/classes/UI_MenuItem.xml +++ b/dependencies/php/classes/UI_MenuItem.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\MenuItem" namespace="" name="UI\MenuItem"> +<class xmlns="http://xml.phpdox.net/src" full="UI\MenuItem" namespace="UI" name="MenuItem"> <method name="disable" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Disable Menu Item"/> @@ -29,6 +29,6 @@ <description compact="Set Checked"/> <return type="void"/> </docblock> - <parameter name="checked" optional="false" byreference="false" type="object" class="boolean"/> + <parameter name="checked" optional="false" byreference="false" type="object" class="bool"/> </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/UI_Point.xml b/dependencies/php/classes/UI_Point.xml index 4e4ddfe8f623c8baa674b1990b43ce1a08b4b9b5..907a25930fce7c1955b9122f575dc1414d75bee0 100644 --- a/dependencies/php/classes/UI_Point.xml +++ b/dependencies/php/classes/UI_Point.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Point" namespace="" name="UI\Point"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Point" namespace="UI" name="Point"> <member name="x" static="false" visibility="public"> <default>null</default> <docblock> diff --git a/dependencies/php/classes/UI_Size.xml b/dependencies/php/classes/UI_Size.xml index d122de98748df7c51aaed572a21160695a6f7dc4..e1576c9acdea853a2d2521521d43e5caf14188c5 100644 --- a/dependencies/php/classes/UI_Size.xml +++ b/dependencies/php/classes/UI_Size.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Size" namespace="" name="UI\Size"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Size" namespace="UI" name="Size"> <member name="width" static="false" visibility="public"> <default>null</default> <docblock> diff --git a/dependencies/php/classes/UI_Window.xml b/dependencies/php/classes/UI_Window.xml index 977a016043de22dc75d7d9065afc228e5398e403..59518e233213b480f32367f98147bcf77c9772ec 100644 --- a/dependencies/php/classes/UI_Window.xml +++ b/dependencies/php/classes/UI_Window.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="UI\Window" namespace="" name="UI\Window"> +<class xmlns="http://xml.phpdox.net/src" full="UI\Window" namespace="UI" name="Window"> <extends name="UI\Control" full="UI\Control"/> <member name="controls" static="false" visibility="protected"> <default>null</default> @@ -14,7 +14,7 @@ </docblock> <parameter name="title" optional="false" byreference="false" type="string"/> <parameter name="size" optional="false" byreference="false" type="object" class="Size"/> - <parameter name="menu" optional="true" byreference="false" type="object" class="boolean"/> + <parameter name="menu" optional="true" byreference="false" type="object" class="bool"/> </constructor> <method name="add" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -92,21 +92,21 @@ <description compact="Border Use"/> <return type="void"/> </docblock> - <parameter name="borders" optional="false" byreference="false" type="object" class="boolean"/> + <parameter name="borders" optional="false" byreference="false" type="object" class="bool"/> </method> <method name="setFullScreen" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Full Screen Use"/> <return type="void"/> </docblock> - <parameter name="full" optional="false" byreference="false" type="object" class="boolean"/> + <parameter name="full" optional="false" byreference="false" type="object" class="bool"/> </method> <method name="setMargin" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Margin Use"/> <return type="void"/> </docblock> - <parameter name="margin" optional="false" byreference="false" type="object" class="boolean"/> + <parameter name="margin" optional="false" byreference="false" type="object" class="bool"/> </method> <method name="setSize" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/Volatile.xml b/dependencies/php/classes/Volatile.xml new file mode 100644 index 0000000000000000000000000000000000000000..ae4fab1c618eb22388b07bfc8b6f775af7b2be3a --- /dev/null +++ b/dependencies/php/classes/Volatile.xml @@ -0,0 +1,123 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Volatile" namespace="" name="Volatile"> + <implements name="Collectable" full="Collectable"/> + <method name="chunk" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + <parameter name="size" optional="false" byreference="false" type="int"/> + <parameter name="preserve" optional="false" byreference="false" type="object" class="bool"/> + </method> + <method name="count" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + </method> + <method name="extend" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="class" optional="false" byreference="false" type="string"/> + </method> + <method name="from" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="Threaded"/> + </docblock> + <parameter name="run" optional="false" byreference="false" type="object" class="Closure"/> + <parameter name="construct" optional="true" byreference="false" type="object" class="Closure"/> + <parameter name="args" optional="true" byreference="false" type="object" class="array"/> + </method> + <method name="getTerminationInfo" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + </method> + <method name="isRunning" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + </method> + <method name="isTerminated" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + </method> + <method name="isWaiting" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + </method> + <method name="lock" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + </method> + <method name="merge" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="from" optional="false" byreference="false" type="object" class="mixed"/> + <parameter name="overwrite" optional="true" byreference="false" type="object" class="bool"/> + </method> + <method name="notify" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + </method> + <method name="notifyOne" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + </method> + <method name="pop" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + </method> + <method name="run" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> + <method name="shift" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mixed"/> + </docblock> + </method> + <method name="synchronized" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mixed"/> + </docblock> + <parameter name="block" optional="false" byreference="false" type="object" class="Closure"/> + <parameter name="..." optional="true" byreference="false" type="object" class="mixed"/> + </method> + <method name="unlock" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + </method> + <method name="wait" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="timeout" optional="true" byreference="false" type="int"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Vtiful_Kernel_Excel.xml b/dependencies/php/classes/Vtiful_Kernel_Excel.xml new file mode 100644 index 0000000000000000000000000000000000000000..099b6fd30951e112ce22035265095be7f053c8d9 --- /dev/null +++ b/dependencies/php/classes/Vtiful_Kernel_Excel.xml @@ -0,0 +1,120 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Vtiful\Kernel\Excel" namespace="Vtiful\Kernel" name="Excel"> + <method name="addSheet" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Vtiful\Kernel\Excel addSheet"/> + <return type="void"/> + </docblock> + <parameter name="sheetName" optional="false" byreference="false" type="string"/> + </method> + <method name="autoFilter" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Vtiful\Kernel\Excel autoFilter"/> + <return type="void"/> + </docblock> + <parameter name="scope" optional="false" byreference="false" type="string"/> + </method> + <method name="constMemory" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Vtiful\Kernel\Excel constMemory"/> + <return type="void"/> + </docblock> + <parameter name="fileName" optional="false" byreference="false" type="string"/> + <parameter name="sheetName" optional="true" byreference="false" type="string"/> + </method> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Vtiful\Kernel\Excel constructor"/> + <return type="void"/> + </docblock> + <parameter name="config" optional="false" byreference="false" type="object" class="array"/> + </constructor> + <method name="data" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Vtiful\Kernel\Excel data"/> + <return type="void"/> + </docblock> + <parameter name="data" optional="false" byreference="false" type="object" class="array"/> + </method> + <method name="fileName" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Vtiful\Kernel\Excel fileName"/> + <return type="void"/> + </docblock> + <parameter name="fileName" optional="false" byreference="false" type="string"/> + <parameter name="sheetName" optional="true" byreference="false" type="string"/> + </method> + <method name="getHandle" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Vtiful\Kernel\Excel getHandle"/> + <return type="void"/> + </docblock> + </method> + <method name="header" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Vtiful\Kernel\Excel header"/> + <return type="void"/> + </docblock> + <parameter name="headerData" optional="false" byreference="false" type="object" class="array"/> + </method> + <method name="insertFormula" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Vtiful\Kernel\Excel insertFormula"/> + <return type="void"/> + </docblock> + <parameter name="row" optional="false" byreference="false" type="int"/> + <parameter name="column" optional="false" byreference="false" type="int"/> + <parameter name="formula" optional="false" byreference="false" type="string"/> + </method> + <method name="insertImage" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Vtiful\Kernel\Excel insertImage"/> + <return type="void"/> + </docblock> + <parameter name="row" optional="false" byreference="false" type="int"/> + <parameter name="column" optional="false" byreference="false" type="int"/> + <parameter name="localImagePath" optional="false" byreference="false" type="string"/> + </method> + <method name="insertText" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Vtiful\Kernel\Excel insertText"/> + <return type="void"/> + </docblock> + <parameter name="row" optional="false" byreference="false" type="int"/> + <parameter name="column" optional="false" byreference="false" type="int"/> + <parameter name="data" optional="false" byreference="false" type="object" class="string"/> + <parameter name="format" optional="true" byreference="false" type="string"/> + </method> + <method name="mergeCells" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Vtiful\Kernel\Excel mergeCells"/> + <return type="void"/> + </docblock> + <parameter name="scope" optional="false" byreference="false" type="string"/> + <parameter name="data" optional="false" byreference="false" type="string"/> + </method> + <method name="output" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Vtiful\Kernel\Excel output"/> + <return type="void"/> + </docblock> + </method> + <method name="setColumn" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Vtiful\Kernel\Excel setColumn"/> + <return type="void"/> + </docblock> + <parameter name="range" optional="false" byreference="false" type="string"/> + <parameter name="width" optional="false" byreference="false" type="object" class="float"/> + <parameter name="format" optional="true" byreference="false" type="object" class="resource"/> + </method> + <method name="setRow" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Vtiful\Kernel\Excel setRow"/> + <return type="void"/> + </docblock> + <parameter name="range" optional="false" byreference="false" type="string"/> + <parameter name="height" optional="false" byreference="false" type="object" class="float"/> + <parameter name="format" optional="true" byreference="false" type="object" class="resource"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Vtiful_Kernel_Format.xml b/dependencies/php/classes/Vtiful_Kernel_Format.xml new file mode 100644 index 0000000000000000000000000000000000000000..b9a7cb5a5dd8f20be59bc454fd33d5d04abe8e3c --- /dev/null +++ b/dependencies/php/classes/Vtiful_Kernel_Format.xml @@ -0,0 +1,113 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Vtiful\Kernel\Format" namespace="Vtiful\Kernel" name="Format"> + <constant name="FORMAT_ALIGN_LEFT" value="1"> + <docblock> + <var type="int"/> + </docblock> + </constant> + <constant name="FORMAT_ALIGN_CENTER" value="2"> + <docblock> + <var type="int"/> + </docblock> + </constant> + <constant name="FORMAT_ALIGN_RIGHT" value="3"> + <docblock> + <var type="int"/> + </docblock> + </constant> + <constant name="FORMAT_ALIGN_FILL" value="4"> + <docblock> + <var type="int"/> + </docblock> + </constant> + <constant name="FORMAT_ALIGN_JUSTIFY" value="5"> + <docblock> + <var type="int"/> + </docblock> + </constant> + <constant name="FORMAT_ALIGN_CENTER_ACROSS" value="6"> + <docblock> + <var type="int"/> + </docblock> + </constant> + <constant name="FORMAT_ALIGN_DISTRIBUTED" value="7"> + <docblock> + <var type="int"/> + </docblock> + </constant> + <constant name="FORMAT_ALIGN_VERTICAL_TOP" value="8"> + <docblock> + <var type="int"/> + </docblock> + </constant> + <constant name="FORMAT_ALIGN_VERTICAL_BOTTOM" value="9"> + <docblock> + <var type="int"/> + </docblock> + </constant> + <constant name="FORMAT_ALIGN_VERTICAL_CENTER" value="10"> + <docblock> + <var type="int"/> + </docblock> + </constant> + <constant name="FORMAT_ALIGN_VERTICAL_JUSTIFY" value="11"> + <docblock> + <var type="int"/> + </docblock> + </constant> + <constant name="FORMAT_ALIGN_VERTICAL_DISTRIBUTED" value="12"> + <docblock> + <var type="int"/> + </docblock> + </constant> + <constant name="UNDERLINE_SINGLE" value="1"> + <docblock> + <var type="int"/> + </docblock> + </constant> + <constant name="UNDERLINE_DOUBLE" value="2"> + <docblock> + <var type="int"/> + </docblock> + </constant> + <constant name="UNDERLINE_SINGLE_ACCOUNTING" value="3"> + <docblock> + <var type="int"/> + </docblock> + </constant> + <constant name="UNDERLINE_DOUBLE_ACCOUNTING" value="4"> + <docblock> + <var type="int"/> + </docblock> + </constant> + <method name="align" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Vtiful\Kernel\Format align"/> + <return type="void"/> + </docblock> + <parameter name="handle" optional="false" byreference="false" type="object" class="resource"/> + <parameter name="style" optional="false" byreference="false" type="int"/> + </method> + <method name="bold" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Vtiful\Kernel\Format bold"/> + <return type="void"/> + </docblock> + <parameter name="handle" optional="false" byreference="false" type="object" class="resource"/> + </method> + <method name="italic" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Vtiful\Kernel\Format italic"/> + <return type="void"/> + </docblock> + <parameter name="handle" optional="false" byreference="false" type="object" class="resource"/> + </method> + <method name="underline" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Vtiful\Kernel\Format underline"/> + <return type="void"/> + </docblock> + <parameter name="handle" optional="false" byreference="false" type="object" class="resource"/> + <parameter name="style" optional="false" byreference="false" type="int"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/WeakMap.xml b/dependencies/php/classes/WeakMap.xml index 62097ec8bace206826354e1d2cd2e7d3faa7e458..626fb0e545a5c0b00e4b5a950ce8b8452a9f381e 100644 --- a/dependencies/php/classes/WeakMap.xml +++ b/dependencies/php/classes/WeakMap.xml @@ -21,7 +21,7 @@ </method> <method name="key" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the current key under iteration."/> + <description compact="Returns the current key under iteration"/> <return type="object"/> </docblock> </method> diff --git a/dependencies/php/classes/Worker.xml b/dependencies/php/classes/Worker.xml index 1359a0c48e4fb15bf8f83628fe9718cdae642dcd..bce513b0a2b9faac794fd9e18290a2d2f3744893 100644 --- a/dependencies/php/classes/Worker.xml +++ b/dependencies/php/classes/Worker.xml @@ -23,7 +23,7 @@ <method name="isWorking" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="State Detection"/> - <return type="boolean"/> + <return type="bool"/> </docblock> </method> <method name="shutdown" abstract="false" static="false" visibility="public" final="false"> @@ -54,7 +54,7 @@ <method name="getCreatorId" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="integer"/> + <return type="int"/> </docblock> </method> <method name="getCurrentThread" abstract="false" static="false" visibility="public" final="false"> @@ -66,13 +66,13 @@ <method name="getCurrentThreadId" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="integer"/> + <return type="int"/> </docblock> </method> <method name="getThreadId" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="integer"/> + <return type="int"/> </docblock> </method> <method name="globally" abstract="false" static="false" visibility="public" final="false"> @@ -84,19 +84,19 @@ <method name="isJoined" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="boolean"/> + <return type="bool"/> </docblock> </method> <method name="isStarted" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="boolean"/> + <return type="bool"/> </docblock> </method> <method name="join" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="boolean"/> + <return type="bool"/> </docblock> </method> <method name="kill" abstract="false" static="false" visibility="public" final="false"> @@ -108,8 +108,8 @@ <method name="start" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="boolean"/> + <return type="bool"/> </docblock> - <parameter name="options" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="options" optional="true" byreference="false" type="int"/> </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/XMLDiff_Base.xml b/dependencies/php/classes/XMLDiff_Base.xml index 0bc2742f7ff9c49ee62958b2ed5d14dbeca86116..620a81f245e850374d049325baa97372b2e36693 100644 --- a/dependencies/php/classes/XMLDiff_Base.xml +++ b/dependencies/php/classes/XMLDiff_Base.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="XMLDiff\Base" namespace="" name="XMLDiff\Base"> +<class xmlns="http://xml.phpdox.net/src" full="XMLDiff\Base" namespace="XMLDiff" name="Base"> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Constructor"/> diff --git a/dependencies/php/classes/XMLDiff_DOM.xml b/dependencies/php/classes/XMLDiff_DOM.xml index afe8083f0c15f973bff5bda0a10e0a2dd4cbad28..23bedf9ff84be3b5f74395791003bcc9dfaf1865 100644 --- a/dependencies/php/classes/XMLDiff_DOM.xml +++ b/dependencies/php/classes/XMLDiff_DOM.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="XMLDiff\DOM" namespace="" name="XMLDiff\DOM"> +<class xmlns="http://xml.phpdox.net/src" full="XMLDiff\DOM" namespace="XMLDiff" name="DOM"> <extends name="XMLDiff\Base" full="XMLDiff\Base"/> <method name="diff" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/XMLDiff_File.xml b/dependencies/php/classes/XMLDiff_File.xml index 42f71dca90dc971a7055f01867da5a56f9fb3653..cf613b1a9b17d70cb9bd6d592b93b62165dc88c2 100644 --- a/dependencies/php/classes/XMLDiff_File.xml +++ b/dependencies/php/classes/XMLDiff_File.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="XMLDiff\File" namespace="" name="XMLDiff\File"> +<class xmlns="http://xml.phpdox.net/src" full="XMLDiff\File" namespace="XMLDiff" name="File"> <extends name="XMLDiff\Base" full="XMLDiff\Base"/> <method name="diff" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/XMLDiff_Memory.xml b/dependencies/php/classes/XMLDiff_Memory.xml index 9351677464bf36fe97c95703aeea078b1f1f216c..0377db882d5ce466ad3e0cbe7bd3ccfea7b07707 100644 --- a/dependencies/php/classes/XMLDiff_Memory.xml +++ b/dependencies/php/classes/XMLDiff_Memory.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="XMLDiff\Memory" namespace="" name="XMLDiff\Memory"> +<class xmlns="http://xml.phpdox.net/src" full="XMLDiff\Memory" namespace="XMLDiff" name="Memory"> <extends name="XMLDiff\Base" full="XMLDiff\Base"/> <method name="diff" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/classes/XMLReader.xml b/dependencies/php/classes/XMLReader.xml index b9e106a5d286651f99da60697766ee16c7300c8f..dc996c785a883216d9509c0d7785bed422a08e87 100644 --- a/dependencies/php/classes/XMLReader.xml +++ b/dependencies/php/classes/XMLReader.xml @@ -325,13 +325,13 @@ <return type="bool"/> </docblock> </method> - <method name="readInnerXML" abstract="false" static="false" visibility="public" final="false"> + <method name="readInnerXml" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Retrieve XML from current node"/> <return type="string"/> </docblock> </method> - <method name="readOuterXML" abstract="false" static="false" visibility="public" final="false"> + <method name="readOuterXml" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Retrieve XML from current node, including itself"/> <return type="string"/> diff --git a/dependencies/php/classes/XSLTProcessor.xml b/dependencies/php/classes/XSLTProcessor.xml index 590a1cfe179b3bece062bb33f7be03e8a02dd9cb..fa46fc678e004fbb1ded492fbe5edd3681043d98 100644 --- a/dependencies/php/classes/XSLTProcessor.xml +++ b/dependencies/php/classes/XSLTProcessor.xml @@ -80,7 +80,7 @@ <parameter name="doc" optional="false" byreference="false" type="object" class="DOMDocument"/> <parameter name="uri" optional="false" byreference="false" type="string"/> </method> - <method name="transformToXML" abstract="false" static="false" final="false"> + <method name="transformToXml" abstract="false" static="false" final="false"> <docblock> <description compact="Transform to XML"/> <return type="string"/> diff --git a/dependencies/php/classes/Yaconf.xml b/dependencies/php/classes/Yaconf.xml new file mode 100644 index 0000000000000000000000000000000000000000..8c96464d3fcf6c30184ec681fd5429e0ecd193ad --- /dev/null +++ b/dependencies/php/classes/Yaconf.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="Yaconf" namespace="" name="Yaconf"> + <method name="get" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Retrieve a item"/> + <return type="mixed"/> + </docblock> + <parameter name="name" optional="false" byreference="false" type="string"/> + <parameter name="default_value" optional="true" byreference="false" type="object" class="mixed"/> + </method> + <method name="has" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Determine if a item exists"/> + <return type="bool"/> + </docblock> + <parameter name="name" optional="false" byreference="false" type="string"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/Yaf_Action_Abstract.xml b/dependencies/php/classes/Yaf_Action_Abstract.xml index 36ce297a122218633f21327d56b08464fd5013a2..578f383a269910969b76f02e82fa4ef522402e26 100644 --- a/dependencies/php/classes/Yaf_Action_Abstract.xml +++ b/dependencies/php/classes/Yaf_Action_Abstract.xml @@ -89,7 +89,7 @@ <method name="getViewpath" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="void"/> + <return type="string"/> </docblock> </method> <method name="init" abstract="false" static="false" visibility="public" final="false"> diff --git a/dependencies/php/classes/Yaf_Application.xml b/dependencies/php/classes/Yaf_Application.xml index dd4e403fb20304c1b448951cfb5bc344978b0df5..60d8378c75d0135480dcacdd8ba55b76b428bc88 100644 --- a/dependencies/php/classes/Yaf_Application.xml +++ b/dependencies/php/classes/Yaf_Application.xml @@ -39,7 +39,7 @@ <method name="app" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Retrieve an Application instance"/> - <return type="void"/> + <return type="mixed"/> </docblock> </method> <method name="bootstrap" abstract="false" static="false" visibility="public" final="false"> diff --git a/dependencies/php/classes/Yaf_Config_Ini.xml b/dependencies/php/classes/Yaf_Config_Ini.xml index 3f4665aa4e479a4bfe32abaf54c9914beb9a64f3..51f3bc46aa4df38e8a1d0a2f93bd5a2a023de2c1 100644 --- a/dependencies/php/classes/Yaf_Config_Ini.xml +++ b/dependencies/php/classes/Yaf_Config_Ini.xml @@ -11,39 +11,39 @@ </constructor> <method name="count" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="The count purpose"/> + <description compact="Count all elements in Yaf_Config.ini"/> <return type="void"/> </docblock> </method> <method name="current" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="The current purpose"/> + <description compact="Retrieve the current value"/> <return type="void"/> </docblock> </method> <method name="__get" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="The __get purpose"/> + <description compact="Retrieve a element"/> <return type="void"/> </docblock> <parameter name="name" optional="true" byreference="false" type="string"/> </method> <method name="__isset" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="The __isset purpose"/> + <description compact="Determine if a key is exists"/> <return type="void"/> </docblock> <parameter name="name" optional="false" byreference="false" type="string"/> </method> <method name="key" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="The key purpose"/> + <description compact="Fetch current element's key"/> <return type="void"/> </docblock> </method> <method name="next" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="The next purpose"/> + <description compact="Advance the internal pointer"/> <return type="void"/> </docblock> </method> @@ -98,7 +98,7 @@ </method> <method name="toArray" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns a PHP array"/> + <description compact="Return config as a PHP array"/> <return type="array"/> </docblock> </method> diff --git a/dependencies/php/classes/Yaf_Controller_Abstract.xml b/dependencies/php/classes/Yaf_Controller_Abstract.xml index 5cf528066d6829198d7f82bb213d7b9c6b41250e..c0b3806815bc3f4f97f112793173b7b8c8691f15 100644 --- a/dependencies/php/classes/Yaf_Controller_Abstract.xml +++ b/dependencies/php/classes/Yaf_Controller_Abstract.xml @@ -64,7 +64,7 @@ </method> <method name="forward" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="foward to another action">forward current execution process to other action. this method doesn't switch to the destination action immediately, it will take place after current flow finish.</description> + <description compact="Foward to another action">forward current execution process to other action. this method doesn't switch to the destination action immediately, it will take place after current flow finish.</description> <return type="void"/> </docblock> <parameter name="action" optional="false" byreference="false" type="string"/> @@ -110,7 +110,7 @@ <method name="getViewpath" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The getViewpath purpose"/> - <return type="void"/> + <return type="string"/> </docblock> </method> <method name="init" abstract="false" static="false" visibility="public" final="false"> diff --git a/dependencies/php/classes/Yaf_Dispatcher.xml b/dependencies/php/classes/Yaf_Dispatcher.xml index 0ea667e1f8318d24cf5b8dfa5557656ebd7f9788..cf68c520a839d8b506c499c5705ad11f788fb09f 100644 --- a/dependencies/php/classes/Yaf_Dispatcher.xml +++ b/dependencies/php/classes/Yaf_Dispatcher.xml @@ -107,7 +107,7 @@ </method> <method name="enableView" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="enable view rendering"/> + <description compact="Enable view rendering"/> <return type="Yaf_Dispatcher"/> </docblock> </method> diff --git a/dependencies/php/classes/Yaf_Loader.xml b/dependencies/php/classes/Yaf_Loader.xml index 769e5ab3672f45b83ff0285c33a5d26b194ddb5b..3cbb8f3f386a82094154456b93b598f32701e8d7 100644 --- a/dependencies/php/classes/Yaf_Loader.xml +++ b/dependencies/php/classes/Yaf_Loader.xml @@ -56,7 +56,7 @@ </method> <method name="getLibraryPath" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="get the library path"/> + <description compact="Get the library path"/> <return type="Yaf_Loader"/> </docblock> <parameter name="is_global" optional="true" byreference="false" type="object" class="bool"/> @@ -81,7 +81,7 @@ </method> <method name="registerLocalNamespace" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="register local class prefix">Register local class prefix name, Yaf_Loader search classes in two library directories, the one is configured via application.library.directory(in application.ini) which is called local libraray directory; the other is configured via yaf.library (in php.ini) which is callled global library directory, since it can be shared by many applications in the same server.</description> + <description compact="Register local class prefix">Register local class prefix name, Yaf_Loader search classes in two library directories, the one is configured via application.library.directory(in application.ini) which is called local libraray directory; the other is configured via yaf.library (in php.ini) which is callled global library directory, since it can be shared by many applications in the same server.</description> <return type="void"/> </docblock> <parameter name="prefix" optional="false" byreference="false" type="object" class="mixed"/> diff --git a/dependencies/php/classes/Yaf_Plugin_Abstract.xml b/dependencies/php/classes/Yaf_Plugin_Abstract.xml index a78cbeb2bd17244dff33469d7bc367e7af0d6027..4833815a03a1a696e62e1f213a420263085d7872 100644 --- a/dependencies/php/classes/Yaf_Plugin_Abstract.xml +++ b/dependencies/php/classes/Yaf_Plugin_Abstract.xml @@ -10,7 +10,7 @@ </method> <method name="dispatchLoopStartup" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="The dispatchLoopStartup purpose"/> + <description compact="Hook before dispatch loop"/> <return type="void"/> </docblock> <parameter name="request" optional="false" byreference="false" type="object" class="Yaf_Request_Abstract"/> diff --git a/dependencies/php/classes/Yaf_Request_Abstract.xml b/dependencies/php/classes/Yaf_Request_Abstract.xml index 77aeb8d95976cc172314cbb626ec803b119e5f5c..7e1c58595f80d000808df99337567d2b9b1694da 100644 --- a/dependencies/php/classes/Yaf_Request_Abstract.xml +++ b/dependencies/php/classes/Yaf_Request_Abstract.xml @@ -110,14 +110,14 @@ </method> <method name="getLanguage" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="The getLanguage purpose"/> + <description compact="Retrieve client's prefered language"/> <return type="void"/> </docblock> </method> <method name="getMethod" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="The getMethod purpose"/> - <return type="void"/> + <description compact="Retrieve the request method"/> + <return type="string"/> </docblock> </method> <method name="getModuleName" abstract="false" static="false" visibility="public" final="false"> @@ -128,16 +128,16 @@ </method> <method name="getParam" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="The getParam purpose"/> - <return type="void"/> + <description compact="Retrieve calling parameter"/> + <return type="mixed"/> </docblock> <parameter name="name" optional="false" byreference="false" type="string"/> <parameter name="default" optional="true" byreference="false" type="string"/> </method> <method name="getParams" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="The getParams purpose"/> - <return type="void"/> + <description compact="Retrieve all calling parameters"/> + <return type="array"/> </docblock> </method> <method name="getRequestUri" abstract="false" static="false" visibility="public" final="false"> @@ -156,56 +156,56 @@ </method> <method name="isCli" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="The isCli purpose"/> - <return type="void"/> + <description compact="Determine if request is CLI request"/> + <return type="bool"/> </docblock> </method> <method name="isDispatched" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="The isDispatched purpose"/> - <return type="void"/> + <description compact="Determin if the request is dispatched"/> + <return type="bool"/> </docblock> </method> <method name="isGet" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="The isGet purpose"/> - <return type="void"/> + <description compact="Determine if request is GET request"/> + <return type="bool"/> </docblock> </method> <method name="isHead" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="The isHead purpose"/> - <return type="void"/> + <description compact="Determine if request is HEAD request"/> + <return type="bool"/> </docblock> </method> <method name="isOptions" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="The isOptions purpose"/> - <return type="void"/> + <description compact="Determine if request is OPTIONS request"/> + <return type="bool"/> </docblock> </method> <method name="isPost" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="The isPost purpose"/> - <return type="void"/> + <description compact="Determine if request is POST request"/> + <return type="bool"/> </docblock> </method> <method name="isPut" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="The isPut purpose"/> - <return type="void"/> + <description compact="Determine if request is PUT request"/> + <return type="bool"/> </docblock> </method> <method name="isRouted" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="The isRouted purpose"/> - <return type="void"/> + <description compact="Determin if request has been routed"/> + <return type="bool"/> </docblock> </method> <method name="isXmlHttpRequest" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="The isXmlHttpRequest purpose"/> - <return type="void"/> + <description compact="Determine if request is AJAX request"/> + <return type="bool"/> </docblock> </method> <method name="setActionName" abstract="false" static="false" visibility="public" final="false"> @@ -217,7 +217,7 @@ </method> <method name="setBaseUri" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="set base URI">Set base URI, base URI is used when doing routing, in routing phase request URI is used to route a request, while base URI is used to skip the leadding part(base URI) of request URI. That is, if comes a request with request URI a/b/c, then if you set base URI to "a/b", only "/c" will be used in routing phase. generally, you don't need to set this, Yaf will determine it automatically.</description> + <description compact="Set base URI">Set base URI, base URI is used when doing routing, in routing phase request URI is used to route a request, while base URI is used to skip the leadding part(base URI) of request URI. That is, if comes a request with request URI a/b/c, then if you set base URI to "a/b", only "/c" will be used in routing phase. generally, you don't need to set this, Yaf will determine it automatically.</description> <return type="bool"/> </docblock> <parameter name="uir" optional="false" byreference="false" type="string"/> @@ -244,8 +244,8 @@ </method> <method name="setParam" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="The setParam purpose"/> - <return type="void"/> + <description compact="Set a calling parameter to a request"/> + <return type="bool"/> </docblock> <parameter name="name" optional="false" byreference="false" type="string"/> <parameter name="value" optional="true" byreference="false" type="string"/> diff --git a/dependencies/php/classes/Yaf_Request_Http.xml b/dependencies/php/classes/Yaf_Request_Http.xml index 50d7d37ce7979f48ca8d1822042361e25cc7c5f1..a7fd5be59c61e4833413e4b2e5cbfaeb5a8c2631 100644 --- a/dependencies/php/classes/Yaf_Request_Http.xml +++ b/dependencies/php/classes/Yaf_Request_Http.xml @@ -3,7 +3,7 @@ <extends name="Yaf_Request_Abstract" full="Yaf_Request_Abstract"/> <method name="__clone" abstract="false" static="false" final="false"> <docblock> - <description compact="The __clone purpose"/> + <description compact="Yaf_Request_Http can not be cloned"/> <return type="void"/> </docblock> </method> @@ -53,6 +53,12 @@ <parameter name="name" optional="false" byreference="false" type="string"/> <parameter name="default" optional="true" byreference="false" type="string"/> </method> + <method name="getRaw" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Retrieve Raw request body"/> + <return type="mixed"/> + </docblock> + </method> <method name="getRequest" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="The getRequest purpose"/> @@ -61,7 +67,7 @@ </method> <method name="isXmlHttpRequest" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Whether a Ajax Request">Check the request whether it is a Ajax Request. This method depends on the request header: HTTP_X_REQUESTED_WITH, some Javascript library doesn't set this header while doing Ajax request</description> + <description compact="Determin if request is Ajax Request">Check the request whether it is a Ajax Request. This method depends on the request header: HTTP_X_REQUESTED_WITH, some Javascript library doesn't set this header while doing Ajax request</description> <return type="bool"/> </docblock> </method> @@ -106,7 +112,7 @@ <method name="getMethod" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="void"/> + <return type="string"/> </docblock> </method> <method name="getModuleName" abstract="false" static="false" visibility="public" final="false"> @@ -118,7 +124,7 @@ <method name="getParam" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="void"/> + <return type="mixed"/> </docblock> <parameter name="name" optional="false" byreference="false" type="string"/> <parameter name="default" optional="true" byreference="false" type="string"/> @@ -126,7 +132,7 @@ <method name="getParams" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="void"/> + <return type="array"/> </docblock> </method> <method name="getRequestUri" abstract="false" static="false" visibility="public" final="false"> @@ -146,55 +152,55 @@ <method name="isCli" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="void"/> + <return type="bool"/> </docblock> </method> <method name="isDispatched" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="void"/> + <return type="bool"/> </docblock> </method> <method name="isGet" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="void"/> + <return type="bool"/> </docblock> </method> <method name="isHead" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="void"/> + <return type="bool"/> </docblock> </method> <method name="isOptions" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="void"/> + <return type="bool"/> </docblock> </method> <method name="isPost" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="void"/> + <return type="bool"/> </docblock> </method> <method name="isPut" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="void"/> + <return type="bool"/> </docblock> </method> <method name="isRouted" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="void"/> + <return type="bool"/> </docblock> </method> <method name="isXmlHttpRequest" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="void"/> + <return type="bool"/> </docblock> </method> <method name="setActionName" abstract="false" static="false" visibility="public" final="false"> @@ -234,7 +240,7 @@ <method name="setParam" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="void"/> + <return type="bool"/> </docblock> <parameter name="name" optional="false" byreference="false" type="string"/> <parameter name="value" optional="true" byreference="false" type="string"/> diff --git a/dependencies/php/classes/Yaf_Request_Simple.xml b/dependencies/php/classes/Yaf_Request_Simple.xml index aec786bdb822951c84246e8e54ad8d628922299c..b217c49dd74c350d43d194b9b31bfbdc68c7733b 100644 --- a/dependencies/php/classes/Yaf_Request_Simple.xml +++ b/dependencies/php/classes/Yaf_Request_Simple.xml @@ -66,7 +66,7 @@ </method> <method name="isXmlHttpRequest" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="The isXmlHttpRequest purpose"/> + <description compact="Determin if request is AJAX request"/> <return type="void"/> </docblock> </method> @@ -111,7 +111,7 @@ <method name="getMethod" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="void"/> + <return type="string"/> </docblock> </method> <method name="getModuleName" abstract="false" static="false" visibility="public" final="false"> @@ -123,7 +123,7 @@ <method name="getParam" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="void"/> + <return type="mixed"/> </docblock> <parameter name="name" optional="false" byreference="false" type="string"/> <parameter name="default" optional="true" byreference="false" type="string"/> @@ -131,7 +131,7 @@ <method name="getParams" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="void"/> + <return type="array"/> </docblock> </method> <method name="getRequestUri" abstract="false" static="false" visibility="public" final="false"> @@ -151,55 +151,55 @@ <method name="isCli" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="void"/> + <return type="bool"/> </docblock> </method> <method name="isDispatched" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="void"/> + <return type="bool"/> </docblock> </method> <method name="isGet" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="void"/> + <return type="bool"/> </docblock> </method> <method name="isHead" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="void"/> + <return type="bool"/> </docblock> </method> <method name="isOptions" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="void"/> + <return type="bool"/> </docblock> </method> <method name="isPost" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="void"/> + <return type="bool"/> </docblock> </method> <method name="isPut" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="void"/> + <return type="bool"/> </docblock> </method> <method name="isRouted" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="void"/> + <return type="bool"/> </docblock> </method> <method name="isXmlHttpRequest" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="void"/> + <return type="bool"/> </docblock> </method> <method name="setActionName" abstract="false" static="false" visibility="public" final="false"> @@ -239,7 +239,7 @@ <method name="setParam" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="void"/> + <return type="bool"/> </docblock> <parameter name="name" optional="false" byreference="false" type="string"/> <parameter name="value" optional="true" byreference="false" type="string"/> diff --git a/dependencies/php/classes/Yaf_Response_Abstract.xml b/dependencies/php/classes/Yaf_Response_Abstract.xml index 186f86c9abd78dfc592d62eb0a2d275945c2bc85..a96f169ae00ebfadaf616b85ebd69ec6e569f2b8 100644 --- a/dependencies/php/classes/Yaf_Response_Abstract.xml +++ b/dependencies/php/classes/Yaf_Response_Abstract.xml @@ -25,7 +25,7 @@ </member> <method name="appendBody" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="append to body"/> + <description compact="Append to response body"/> <return type="bool"/> </docblock> <parameter name="content" optional="false" byreference="false" type="string"/> @@ -33,14 +33,14 @@ </method> <method name="clearBody" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="The clearBody purpose"/> + <description compact="Discard all exists response body"/> <return type="bool"/> </docblock> <parameter name="key" optional="true" byreference="false" type="string"/> </method> <method name="clearHeaders" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="The clearHeaders purpose"/> + <description compact="Discard all set headers"/> <return type="void"/> </docblock> </method> @@ -85,7 +85,7 @@ </method> <method name="response" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="send response"/> + <description compact="Send response"/> <return type="void"/> </docblock> </method> @@ -105,9 +105,12 @@ </method> <method name="setHeader" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="The setHeader purpose"/> - <return type="void"/> + <description compact="Set reponse header"/> + <return type="bool"/> </docblock> + <parameter name="name" optional="false" byreference="false" type="string"/> + <parameter name="value" optional="false" byreference="false" type="string"/> + <parameter name="replace" optional="true" byreference="false" type="object" class="bool"/> </method> <method name="setRedirect" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -117,8 +120,8 @@ </method> <method name="__toString" abstract="false" static="false" final="false"> <docblock> - <description compact="The __toString purpose"/> - <return type="void"/> + <description compact="Retrieve all bodys as string"/> + <return type="string"/> </docblock> </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/Yar_Client.xml b/dependencies/php/classes/Yar_Client.xml index a049477b93158c642162a7cb61337eeca91a524c..f63a9d1136fd2ab02d6e5fb0b00fbba60b487bd0 100644 --- a/dependencies/php/classes/Yar_Client.xml +++ b/dependencies/php/classes/Yar_Client.xml @@ -38,13 +38,14 @@ <return type="void"/> </docblock> <parameter name="url" optional="false" byreference="false" type="string"/> + <parameter name="options" optional="true" byreference="false" type="object" class="array"/> </constructor> <method name="setOpt" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Set calling contexts"/> - <return type="boolean"/> + <return type="Yar_Client"/> </docblock> - <parameter name="name" optional="false" byreference="false" type="object" class="number"/> + <parameter name="name" optional="false" byreference="false" type="int"/> <parameter name="value" optional="false" byreference="false" type="object" class="mixed"/> </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/Yar_Client_Exception.xml b/dependencies/php/classes/Yar_Client_Exception.xml index 0c72e3c2dc76e1b988c5962ff15c837a042e366f..da1405057563573b8e1ebdb7341c784b06de81ef 100644 --- a/dependencies/php/classes/Yar_Client_Exception.xml +++ b/dependencies/php/classes/Yar_Client_Exception.xml @@ -3,8 +3,8 @@ <extends name="Exception" full="Exception"/> <method name="getType" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="The getType purpose"/> - <return type="void"/> + <description compact="Retrieve exception's type"/> + <return type="string"/> </docblock> </method> <method name="getMessage" abstract="false" static="false" visibility="public" final="true"> diff --git a/dependencies/php/classes/Yar_Concurrent_Client.xml b/dependencies/php/classes/Yar_Concurrent_Client.xml index 0f6e9e2144d61e208c71ebf1badf33f2d1f830c1..e5cc0a769f8af79ff2161658983b7da28d13d263 100644 --- a/dependencies/php/classes/Yar_Concurrent_Client.xml +++ b/dependencies/php/classes/Yar_Concurrent_Client.xml @@ -25,13 +25,15 @@ </docblock> <parameter name="uri" optional="false" byreference="false" type="string"/> <parameter name="method" optional="false" byreference="false" type="string"/> - <parameter name="parameters" optional="false" byreference="false" type="object" class="array"/> + <parameter name="parameters" optional="true" byreference="false" type="object" class="array"/> <parameter name="callback" optional="true" byreference="false" type="object" class="callable"/> + <parameter name="error_callback" optional="true" byreference="false" type="object" class="callable"/> + <parameter name="options" optional="true" byreference="false" type="object" class="array"/> </method> <method name="loop" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Send all calls"/> - <return type="boolean"/> + <return type="bool"/> </docblock> <parameter name="callback" optional="true" byreference="false" type="object" class="callable"/> <parameter name="error_callback" optional="true" byreference="false" type="object" class="callable"/> @@ -39,7 +41,7 @@ <method name="reset" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Clean all registered calls"/> - <return type="boolean"/> + <return type="bool"/> </docblock> </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/Yar_Server.xml b/dependencies/php/classes/Yar_Server.xml index 78e11f00a65f18bc67e2c38dda513223ea079d78..f96d18156ce79678add952719108016d544e7023 100644 --- a/dependencies/php/classes/Yar_Server.xml +++ b/dependencies/php/classes/Yar_Server.xml @@ -16,7 +16,7 @@ <method name="handle" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Start RPC Server">Start a RPC HTTP server, and ready for accpet RPC requests. Usual RPC calls will be issued as HTTP POST requests. If a HTTP GET request is issued to the uri, the service information (commented section above) will be printed on the page</description> - <return type="boolean"/> + <return type="bool"/> </docblock> </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/Yar_Server_Exception.xml b/dependencies/php/classes/Yar_Server_Exception.xml index 148b1000fbebc13e3b45e05f76f00c11e888b2df..eda4f7f628c149a6b2115f4f54ae92346a051bf2 100644 --- a/dependencies/php/classes/Yar_Server_Exception.xml +++ b/dependencies/php/classes/Yar_Server_Exception.xml @@ -9,7 +9,7 @@ </member> <method name="getType" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="The getType purpose"/> + <description compact="Retrieve exception's type"/> <return type="string"/> </docblock> </method> diff --git a/dependencies/php/classes/ZMQContext.xml b/dependencies/php/classes/ZMQContext.xml index 1d5705c781c5d7a0990087fa33d4abde7ec1c17b..74a2c1adbefa079eda60fc4cdd555b87b921f3be 100644 --- a/dependencies/php/classes/ZMQContext.xml +++ b/dependencies/php/classes/ZMQContext.xml @@ -5,8 +5,8 @@ <description compact="Construct a new ZMQContext object"/> <return type="void"/> </docblock> - <parameter name="io_threads" optional="true" byreference="false" type="object" class="integer"/> - <parameter name="is_persistent" optional="true" byreference="false" type="object" class="boolean"/> + <parameter name="io_threads" optional="true" byreference="false" type="int"/> + <parameter name="is_persistent" optional="true" byreference="false" type="object" class="bool"/> </constructor> <method name="getOpt" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -20,14 +20,14 @@ <description compact="Create a new socket"/> <return type="ZMQSocket"/> </docblock> - <parameter name="type" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="type" optional="false" byreference="false" type="int"/> <parameter name="persistent_id" optional="true" byreference="false" type="string"/> <parameter name="on_new_socket" optional="true" byreference="false" type="object" class="callback"/> </method> <method name="isPersistent" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Whether the context is persistent"/> - <return type="boolean"/> + <return type="bool"/> </docblock> </method> <method name="setOpt" abstract="false" static="false" visibility="public" final="false"> @@ -35,7 +35,7 @@ <description compact="Set a socket option"/> <return type="ZMQContext"/> </docblock> - <parameter name="key" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="key" optional="false" byreference="false" type="int"/> <parameter name="value" optional="false" byreference="false" type="object" class="mixed"/> </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/ZMQDevice.xml b/dependencies/php/classes/ZMQDevice.xml index 1003a02453d7354a02bc498dc4a55d2c67bb3b4e..9c290ef216d87ceec792914e0c54f50a028637f4 100644 --- a/dependencies/php/classes/ZMQDevice.xml +++ b/dependencies/php/classes/ZMQDevice.xml @@ -33,7 +33,7 @@ <return type="ZMQDevice"/> </docblock> <parameter name="cb_func" optional="false" byreference="false" type="object" class="callable"/> - <parameter name="timeout" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="timeout" optional="false" byreference="false" type="int"/> <parameter name="user_data" optional="true" byreference="false" type="object" class="mixed"/> </method> <method name="setIdleTimeout" abstract="false" static="false" visibility="public" final="false"> @@ -41,7 +41,7 @@ <description compact="Set the idle timeout"/> <return type="ZMQDevice"/> </docblock> - <parameter name="timeout" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="timeout" optional="false" byreference="false" type="int"/> </method> <method name="setTimerCallback" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -49,7 +49,7 @@ <return type="ZMQDevice"/> </docblock> <parameter name="cb_func" optional="false" byreference="false" type="object" class="callable"/> - <parameter name="timeout" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="timeout" optional="false" byreference="false" type="int"/> <parameter name="user_data" optional="true" byreference="false" type="object" class="mixed"/> </method> <method name="setTimerTimeout" abstract="false" static="false" visibility="public" final="false"> @@ -57,6 +57,6 @@ <description compact="Set the timer timeout"/> <return type="ZMQDevice"/> </docblock> - <parameter name="timeout" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="timeout" optional="false" byreference="false" type="int"/> </method> </class> \ No newline at end of file diff --git a/dependencies/php/classes/ZMQPoll.xml b/dependencies/php/classes/ZMQPoll.xml index e5519fc3c1693e42713dfe5482e5fe55755fd586..fda192f0553432bec970e16c6e870d3e5b8bf7b0 100644 --- a/dependencies/php/classes/ZMQPoll.xml +++ b/dependencies/php/classes/ZMQPoll.xml @@ -6,7 +6,7 @@ <return type="string"/> </docblock> <parameter name="entry" optional="false" byreference="false" type="object" class="mixed"/> - <parameter name="type" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="type" optional="false" byreference="false" type="int"/> </method> <method name="clear" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -17,7 +17,7 @@ <method name="count" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Count items in the poll set"/> - <return type="integer"/> + <return type="int"/> </docblock> </method> <method name="getLastErrors" abstract="false" static="false" visibility="public" final="false"> @@ -29,16 +29,16 @@ <method name="poll" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Poll the items"/> - <return type="integer"/> + <return type="int"/> </docblock> <parameter name="readable" optional="false" byreference="false" type="object" class="array"/> <parameter name="writable" optional="false" byreference="false" type="object" class="array"/> - <parameter name="timeout" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="timeout" optional="true" byreference="false" type="int"/> </method> <method name="remove" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Remove item from poll set"/> - <return type="boolean"/> + <return type="bool"/> </docblock> <parameter name="item" optional="false" byreference="false" type="object" class="mixed"/> </method> diff --git a/dependencies/php/classes/ZMQSocket.xml b/dependencies/php/classes/ZMQSocket.xml index db9d09cd4a4ccd10f88beb7cb58a383274c3a176..86f444c2ab60a3b570d19076472a29c288e1059e 100644 --- a/dependencies/php/classes/ZMQSocket.xml +++ b/dependencies/php/classes/ZMQSocket.xml @@ -6,7 +6,7 @@ <return type="ZMQSocket"/> </docblock> <parameter name="dsn" optional="false" byreference="false" type="string"/> - <parameter name="force" optional="true" byreference="false" type="object" class="boolean"/> + <parameter name="force" optional="true" byreference="false" type="object" class="bool"/> </method> <method name="connect" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -14,7 +14,7 @@ <return type="ZMQSocket"/> </docblock> <parameter name="dsn" optional="false" byreference="false" type="string"/> - <parameter name="force" optional="true" byreference="false" type="object" class="boolean"/> + <parameter name="force" optional="true" byreference="false" type="object" class="bool"/> </method> <constructor name="__construct" abstract="false" static="false" final="false"> <docblock> @@ -48,7 +48,7 @@ <method name="getSocketType" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Get the socket type"/> - <return type="integer"/> + <return type="int"/> </docblock> </method> <method name="getSockOpt" abstract="false" static="false" visibility="public" final="false"> @@ -61,7 +61,7 @@ <method name="isPersistent" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Whether the socket is persistent"/> - <return type="boolean"/> + <return type="bool"/> </docblock> </method> <method name="recv" abstract="false" static="false" visibility="public" final="false"> @@ -69,14 +69,14 @@ <description compact="Receives a message"/> <return type="string"/> </docblock> - <parameter name="mode" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="mode" optional="true" byreference="false" type="int"/> </method> <method name="recvMulti" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Receives a multipart message"/> - <return type="string"/> + <return type="array"/> </docblock> - <parameter name="mode" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="mode" optional="true" byreference="false" type="int"/> </method> <method name="send" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -84,7 +84,7 @@ <return type="ZMQSocket"/> </docblock> <parameter name="message" optional="false" byreference="false" type="string"/> - <parameter name="mode" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="mode" optional="true" byreference="false" type="int"/> </method> <method name="send" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -92,14 +92,14 @@ <return type="ZMQSocket"/> </docblock> <parameter name="message" optional="false" byreference="false" type="object" class="array"/> - <parameter name="mode" optional="true" byreference="false" type="object" class="integer"/> + <parameter name="mode" optional="true" byreference="false" type="int"/> </method> <method name="setSockOpt" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Set a socket option"/> <return type="ZMQSocket"/> </docblock> - <parameter name="key" optional="false" byreference="false" type="object" class="integer"/> + <parameter name="key" optional="false" byreference="false" type="int"/> <parameter name="value" optional="false" byreference="false" type="object" class="mixed"/> </method> <method name="unbind" abstract="false" static="false" visibility="public" final="false"> diff --git a/dependencies/php/classes/ZipArchive.xml b/dependencies/php/classes/ZipArchive.xml index cfbf78cd577927f35aeb7c312114d0a010f8f15f..5e83b2bcc9c9f3ebf70ea21b30f9102ea440453b 100644 --- a/dependencies/php/classes/ZipArchive.xml +++ b/dependencies/php/classes/ZipArchive.xml @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="UTF-8" ?> <class xmlns="http://xml.phpdox.net/src" full="ZipArchive" namespace="" name="ZipArchive"> + <implements name="Countable" full="Countable"/> <member name="status" static="false"> <default>null</default> <docblock> @@ -84,16 +85,22 @@ <return type="bool"/> </docblock> </method> + <method name="count" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Counts the number of files in the achive"/> + <return type="int"/> + </docblock> + </method> <method name="deleteIndex" abstract="false" static="false" final="false"> <docblock> - <description compact="delete an entry in the archive using its index"/> + <description compact="Delete an entry in the archive using its index"/> <return type="bool"/> </docblock> <parameter name="index" optional="false" byreference="false" type="int"/> </method> <method name="deleteName" abstract="false" static="false" final="false"> <docblock> - <description compact="delete an entry in the archive using its name"/> + <description compact="Delete an entry in the archive using its name"/> <return type="bool"/> </docblock> <parameter name="name" optional="false" byreference="false" type="string"/> @@ -183,7 +190,7 @@ </method> <method name="getStream" abstract="false" static="false" final="false"> <docblock> - <description compact="Get a file handler to the entry defined by its name (read only)."/> + <description compact="Get a file handler to the entry defined by its name (read only)"/> <return type="resource"/> </docblock> <parameter name="name" optional="false" byreference="false" type="string"/> @@ -308,7 +315,7 @@ </method> <method name="statIndex" abstract="false" static="false" final="false"> <docblock> - <description compact="Get the details of an entry defined by its index."/> + <description compact="Get the details of an entry defined by its index"/> <return type="array"/> </docblock> <parameter name="index" optional="false" byreference="false" type="int"/> @@ -316,7 +323,7 @@ </method> <method name="statName" abstract="false" static="false" final="false"> <docblock> - <description compact="Get the details of an entry defined by its name."/> + <description compact="Get the details of an entry defined by its name"/> <return type="array"/> </docblock> <parameter name="name" optional="false" byreference="false" type="string"/> @@ -330,7 +337,7 @@ </method> <method name="unchangeArchive" abstract="false" static="false" final="false"> <docblock> - <description compact="Revert all global changes done in the archive."/> + <description compact="Revert all global changes done in the archive"/> <return type="bool"/> </docblock> </method> @@ -343,7 +350,7 @@ </method> <method name="unchangeName" abstract="false" static="false" final="false"> <docblock> - <description compact="Revert all changes done to an entry with the given name."/> + <description compact="Revert all changes done to an entry with the given name"/> <return type="bool"/> </docblock> <parameter name="name" optional="false" byreference="false" type="string"/> diff --git a/dependencies/php/classes/Zookeeper.xml b/dependencies/php/classes/Zookeeper.xml index 774cd60262ed72af03d16f1dcf41a08263e8313a..337415a22b3fd2a905dad559c1e1af5013253a56 100644 --- a/dependencies/php/classes/Zookeeper.xml +++ b/dependencies/php/classes/Zookeeper.xml @@ -2,7 +2,7 @@ <class xmlns="http://xml.phpdox.net/src" full="Zookeeper" namespace="" name="Zookeeper"> <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Create a handle to used communicate with zookeeper."/> + <description compact="Create a handle to used communicate with zookeeper"/> <return type="void"/> </docblock> <parameter name="host" optional="true" byreference="false" type="string"/> @@ -11,16 +11,22 @@ </constructor> <method name="addAuth" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Specify application credentials."/> + <description compact="Specify application credentials"/> <return type="bool"/> </docblock> <parameter name="scheme" optional="false" byreference="false" type="string"/> <parameter name="cert" optional="false" byreference="false" type="string"/> <parameter name="completion_cb" optional="true" byreference="false" type="object" class="callable"/> </method> + <method name="close" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Close the zookeeper handle and free up any resources"/> + <return type="void"/> + </docblock> + </method> <method name="connect" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Create a handle to used communicate with zookeeper."/> + <description compact="Create a handle to used communicate with zookeeper"/> <return type="void"/> </docblock> <parameter name="host" optional="false" byreference="false" type="string"/> @@ -29,7 +35,7 @@ </method> <method name="create" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Create a node synchronously."/> + <description compact="Create a node synchronously"/> <return type="string"/> </docblock> <parameter name="path" optional="false" byreference="false" type="string"/> @@ -39,7 +45,7 @@ </method> <method name="delete" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Delete a node in zookeeper synchronously."/> + <description compact="Delete a node in zookeeper synchronously"/> <return type="bool"/> </docblock> <parameter name="path" optional="false" byreference="false" type="string"/> @@ -47,7 +53,7 @@ </method> <method name="exists" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Checks the existence of a node in zookeeper synchronously."/> + <description compact="Checks the existence of a node in zookeeper synchronously"/> <return type="bool"/> </docblock> <parameter name="path" optional="false" byreference="false" type="string"/> @@ -55,7 +61,7 @@ </method> <method name="get" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Gets the data associated with a node synchronously."/> + <description compact="Gets the data associated with a node synchronously"/> <return type="string"/> </docblock> <parameter name="path" optional="false" byreference="false" type="string"/> @@ -65,38 +71,52 @@ </method> <method name="getAcl" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Gets the acl associated with a node synchronously."/> + <description compact="Gets the acl associated with a node synchronously"/> <return type="array"/> </docblock> <parameter name="path" optional="false" byreference="false" type="string"/> </method> + <method name="getChildren" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Lists the children of a node synchronously"/> + <return type="array"/> + </docblock> + <parameter name="path" optional="false" byreference="false" type="string"/> + <parameter name="watcher_cb" optional="true" byreference="false" type="object" class="callable"/> + </method> <method name="getClientId" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="return the client session id, only valid if the connections is currently connected (ie. last watcher state is ZOO_CONNECTED_STATE)"/> + <description compact="Return the client session id, only valid if the connections is currently connected (ie. last watcher state is ZOO_CONNECTED_STATE)"/> <return type="int"/> </docblock> </method> + <method name="getConfig" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Get instance of ZookeeperConfig"/> + <return type="ZookeeperConfig"/> + </docblock> + </method> <method name="getRecvTimeout" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Return the timeout for this session, only valid if the connections is currently connected (ie. last watcher state is ZOO_CONNECTED_STATE). This value may change after a server re-connect."/> + <description compact="Return the timeout for this session, only valid if the connections is currently connected (ie. last watcher state is ZOO_CONNECTED_STATE). This value may change after a server re-connect"/> <return type="int"/> </docblock> </method> <method name="getState" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Get the state of the zookeeper connection."/> + <description compact="Get the state of the zookeeper connection"/> <return type="int"/> </docblock> </method> <method name="isRecoverable" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Checks if the current zookeeper connection state can be recovered."/> + <description compact="Checks if the current zookeeper connection state can be recovered"/> <return type="bool"/> </docblock> </method> <method name="set" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Sets the data associated with a node."/> + <description compact="Sets the data associated with a node"/> <return type="bool"/> </docblock> <parameter name="path" optional="false" byreference="false" type="string"/> @@ -106,7 +126,7 @@ </method> <method name="setAcl" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Sets the acl associated with a node synchronously."/> + <description compact="Sets the acl associated with a node synchronously"/> <return type="bool"/> </docblock> <parameter name="path" optional="false" byreference="false" type="string"/> @@ -115,28 +135,28 @@ </method> <method name="setDebugLevel" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Sets the debugging level for the library."/> + <description compact="Sets the debugging level for the library"/> <return type="bool"/> </docblock> <parameter name="logLevel" optional="false" byreference="false" type="int"/> </method> <method name="setDeterministicConnOrder" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Enable/disable quorum endpoint order randomization."/> + <description compact="Enable/disable quorum endpoint order randomization"/> <return type="bool"/> </docblock> <parameter name="yesOrNo" optional="false" byreference="false" type="object" class="bool"/> </method> <method name="setLogStream" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Sets the stream to be used by the library for logging."/> + <description compact="Sets the stream to be used by the library for logging"/> <return type="bool"/> </docblock> <parameter name="stream" optional="false" byreference="false" type="object" class="resource"/> </method> <method name="setWatcher" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Set a watcher function."/> + <description compact="Set a watcher function"/> <return type="bool"/> </docblock> <parameter name="watcher_cb" optional="false" byreference="false" type="object" class="callable"/> @@ -181,6 +201,16 @@ <var type="integer"/> </docblock> </constant> + <constant name="" value="1"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="2"> + <docblock> + <var type="integer"/> + </docblock> + </constant> <constant name="" value="3"> <docblock> <var type="integer"/> @@ -226,4 +256,184 @@ <var type="integer"/> </docblock> </constant> + <constant name="" value="1"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="2"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="3"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="4"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="-1"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="-2"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="-1"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="-2"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="-3"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="-4"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="-5"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="-6"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="-7"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="-8"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="-9"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="-13"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="-14"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="0"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="-100"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="-101"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="-102"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="-103"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="-108"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="-110"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="-111"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="-112"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="-113"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="-114"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="-115"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="-116"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="-117"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="-118"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="-119"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="-120"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="-121"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="" value="-122"> + <docblock> + <var type="integer"/> + </docblock> + </constant> </class> \ No newline at end of file diff --git a/dependencies/php/classes/ZookeeperAuthenticationException.xml b/dependencies/php/classes/ZookeeperAuthenticationException.xml new file mode 100644 index 0000000000000000000000000000000000000000..3271b35949a7c0457949fffafdc6c499fdde0d3e --- /dev/null +++ b/dependencies/php/classes/ZookeeperAuthenticationException.xml @@ -0,0 +1,86 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="ZookeeperAuthenticationException" namespace="" name="ZookeeperAuthenticationException"> + <extends name="ZookeeperException" full="ZookeeperException"/> + <member name="message" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The exception message"/> + <var type="string"/> + </docblock> + </member> + <member name="code" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The exception code"/> + <var type="int"/> + </docblock> + </member> + <member name="file" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The filename where the exception was created"/> + <var type="string"/> + </docblock> + </member> + <member name="line" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The line where the exception was created"/> + <var type="int"/> + </docblock> + </member> + <method name="getMessage" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getPrevious" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="Throwable"/> + </docblock> + </method> + <method name="getCode" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="mixed"/> + </docblock> + </method> + <method name="getFile" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getLine" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + </method> + <method name="getTrace" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + </method> + <method name="getTraceAsString" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="__toString" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="__clone" abstract="false" static="false" final="true"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/ZookeeperConfig.xml b/dependencies/php/classes/ZookeeperConfig.xml new file mode 100644 index 0000000000000000000000000000000000000000..46763cefc5f466f52377f55c19450a81c3910512 --- /dev/null +++ b/dependencies/php/classes/ZookeeperConfig.xml @@ -0,0 +1,38 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="ZookeeperConfig" namespace="" name="ZookeeperConfig"> + <method name="add" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Add servers to the ensemble"/> + <return type="void"/> + </docblock> + <parameter name="members" optional="false" byreference="false" type="string"/> + <parameter name="version" optional="true" byreference="false" type="int"/> + <parameter name="stat" optional="true" byreference="false" type="object" class="array"/> + </method> + <method name="get" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Gets the last committed configuration of the ZooKeeper cluster as it is known to the server to which the client is connected, synchronously"/> + <return type="string"/> + </docblock> + <parameter name="watcher_cb" optional="true" byreference="false" type="object" class="callable"/> + <parameter name="stat" optional="true" byreference="false" type="object" class="array"/> + </method> + <method name="remove" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Remove servers from the ensemble"/> + <return type="void"/> + </docblock> + <parameter name="id_list" optional="false" byreference="false" type="string"/> + <parameter name="version" optional="true" byreference="false" type="int"/> + <parameter name="stat" optional="true" byreference="false" type="object" class="array"/> + </method> + <method name="set" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Change ZK cluster ensemble membership and roles of ensemble peers"/> + <return type="void"/> + </docblock> + <parameter name="members" optional="false" byreference="false" type="string"/> + <parameter name="version" optional="true" byreference="false" type="int"/> + <parameter name="stat" optional="true" byreference="false" type="object" class="array"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/ZookeeperConnectionException.xml b/dependencies/php/classes/ZookeeperConnectionException.xml new file mode 100644 index 0000000000000000000000000000000000000000..d059ead8cb642d6ca201d723d4cdabd6039e8b5a --- /dev/null +++ b/dependencies/php/classes/ZookeeperConnectionException.xml @@ -0,0 +1,86 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="ZookeeperConnectionException" namespace="" name="ZookeeperConnectionException"> + <extends name="ZookeeperException" full="ZookeeperException"/> + <member name="message" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The exception message"/> + <var type="string"/> + </docblock> + </member> + <member name="code" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The exception code"/> + <var type="int"/> + </docblock> + </member> + <member name="file" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The filename where the exception was created"/> + <var type="string"/> + </docblock> + </member> + <member name="line" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The line where the exception was created"/> + <var type="int"/> + </docblock> + </member> + <method name="getMessage" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getPrevious" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="Throwable"/> + </docblock> + </method> + <method name="getCode" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="mixed"/> + </docblock> + </method> + <method name="getFile" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getLine" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + </method> + <method name="getTrace" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + </method> + <method name="getTraceAsString" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="__toString" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="__clone" abstract="false" static="false" final="true"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/ZookeeperException.xml b/dependencies/php/classes/ZookeeperException.xml new file mode 100644 index 0000000000000000000000000000000000000000..26940ff26b97ace0f1332d08c4967406ae89ab08 --- /dev/null +++ b/dependencies/php/classes/ZookeeperException.xml @@ -0,0 +1,86 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="ZookeeperException" namespace="" name="ZookeeperException"> + <extends name="Exception" full="Exception"/> + <member name="message" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The exception message"/> + <var type="string"/> + </docblock> + </member> + <member name="code" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The exception code"/> + <var type="int"/> + </docblock> + </member> + <member name="file" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The filename where the exception was created"/> + <var type="string"/> + </docblock> + </member> + <member name="line" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The line where the exception was created"/> + <var type="int"/> + </docblock> + </member> + <method name="getMessage" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getPrevious" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="Throwable"/> + </docblock> + </method> + <method name="getCode" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="mixed"/> + </docblock> + </method> + <method name="getFile" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getLine" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + </method> + <method name="getTrace" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + </method> + <method name="getTraceAsString" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="__toString" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="__clone" abstract="false" static="false" final="true"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/ZookeeperMarshallingException.xml b/dependencies/php/classes/ZookeeperMarshallingException.xml new file mode 100644 index 0000000000000000000000000000000000000000..dc9861fe4deb66311925be2d1ecbee5c1d0bb4e0 --- /dev/null +++ b/dependencies/php/classes/ZookeeperMarshallingException.xml @@ -0,0 +1,86 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="ZookeeperMarshallingException" namespace="" name="ZookeeperMarshallingException"> + <extends name="ZookeeperException" full="ZookeeperException"/> + <member name="message" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The exception message"/> + <var type="string"/> + </docblock> + </member> + <member name="code" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The exception code"/> + <var type="int"/> + </docblock> + </member> + <member name="file" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The filename where the exception was created"/> + <var type="string"/> + </docblock> + </member> + <member name="line" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The line where the exception was created"/> + <var type="int"/> + </docblock> + </member> + <method name="getMessage" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getPrevious" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="Throwable"/> + </docblock> + </method> + <method name="getCode" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="mixed"/> + </docblock> + </method> + <method name="getFile" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getLine" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + </method> + <method name="getTrace" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + </method> + <method name="getTraceAsString" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="__toString" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="__clone" abstract="false" static="false" final="true"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/ZookeeperNoNodeException.xml b/dependencies/php/classes/ZookeeperNoNodeException.xml new file mode 100644 index 0000000000000000000000000000000000000000..d0b03c51e90aa138641a16826d1259e5e6f68197 --- /dev/null +++ b/dependencies/php/classes/ZookeeperNoNodeException.xml @@ -0,0 +1,86 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="ZookeeperNoNodeException" namespace="" name="ZookeeperNoNodeException"> + <extends name="ZookeeperException" full="ZookeeperException"/> + <member name="message" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The exception message"/> + <var type="string"/> + </docblock> + </member> + <member name="code" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The exception code"/> + <var type="int"/> + </docblock> + </member> + <member name="file" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The filename where the exception was created"/> + <var type="string"/> + </docblock> + </member> + <member name="line" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The line where the exception was created"/> + <var type="int"/> + </docblock> + </member> + <method name="getMessage" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getPrevious" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="Throwable"/> + </docblock> + </method> + <method name="getCode" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="mixed"/> + </docblock> + </method> + <method name="getFile" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getLine" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + </method> + <method name="getTrace" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + </method> + <method name="getTraceAsString" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="__toString" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="__clone" abstract="false" static="false" final="true"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/ZookeeperOperationTimeoutException.xml b/dependencies/php/classes/ZookeeperOperationTimeoutException.xml new file mode 100644 index 0000000000000000000000000000000000000000..56752ccbd3cbdffdf8acc097be92067b92c648f6 --- /dev/null +++ b/dependencies/php/classes/ZookeeperOperationTimeoutException.xml @@ -0,0 +1,86 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="ZookeeperOperationTimeoutException" namespace="" name="ZookeeperOperationTimeoutException"> + <extends name="ZookeeperException" full="ZookeeperException"/> + <member name="message" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The exception message"/> + <var type="string"/> + </docblock> + </member> + <member name="code" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The exception code"/> + <var type="int"/> + </docblock> + </member> + <member name="file" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The filename where the exception was created"/> + <var type="string"/> + </docblock> + </member> + <member name="line" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The line where the exception was created"/> + <var type="int"/> + </docblock> + </member> + <method name="getMessage" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getPrevious" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="Throwable"/> + </docblock> + </method> + <method name="getCode" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="mixed"/> + </docblock> + </method> + <method name="getFile" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getLine" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + </method> + <method name="getTrace" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + </method> + <method name="getTraceAsString" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="__toString" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="__clone" abstract="false" static="false" final="true"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/ZookeeperSessionException.xml b/dependencies/php/classes/ZookeeperSessionException.xml new file mode 100644 index 0000000000000000000000000000000000000000..0fef38ceb28d7e44f01546ed3423ec868facdb14 --- /dev/null +++ b/dependencies/php/classes/ZookeeperSessionException.xml @@ -0,0 +1,86 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="ZookeeperSessionException" namespace="" name="ZookeeperSessionException"> + <extends name="ZookeeperException" full="ZookeeperException"/> + <member name="message" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The exception message"/> + <var type="string"/> + </docblock> + </member> + <member name="code" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The exception code"/> + <var type="int"/> + </docblock> + </member> + <member name="file" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The filename where the exception was created"/> + <var type="string"/> + </docblock> + </member> + <member name="line" static="false" visibility="protected"> + <default>null</default> + <docblock> + <description compact="The line where the exception was created"/> + <var type="int"/> + </docblock> + </member> + <method name="getMessage" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getPrevious" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="Throwable"/> + </docblock> + </method> + <method name="getCode" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="mixed"/> + </docblock> + </method> + <method name="getFile" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getLine" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + </method> + <method name="getTrace" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + </method> + <method name="getTraceAsString" abstract="false" static="false" visibility="public" final="true"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="__toString" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="__clone" abstract="false" static="false" final="true"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/mysql_xdevapi_Collection.xml b/dependencies/php/classes/mysql_xdevapi_Collection.xml new file mode 100644 index 0000000000000000000000000000000000000000..54e00ac62a646465ec21b7c151e575b49222b7dd --- /dev/null +++ b/dependencies/php/classes/mysql_xdevapi_Collection.xml @@ -0,0 +1,113 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="mysql_xdevapi\Collection" namespace="mysql_xdevapi" name="Collection"> + <implements name="mysql_xdevapi\SchemaObject" full="mysql_xdevapi\SchemaObject"/> + <member name="name" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact=""/> + </docblock> + </member> + <method name="add" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\CollectionAdd"/> + </docblock> + <parameter name="document" optional="false" byreference="false" type="object" class="mixed"/> + </method> + <method name="addOrReplaceOne" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\Result"/> + </docblock> + <parameter name="id" optional="false" byreference="false" type="string"/> + <parameter name="doc" optional="false" byreference="false" type="string"/> + </method> + <method name="count" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="integer"/> + </docblock> + </method> + <method name="createIndex" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="index_name" optional="false" byreference="false" type="string"/> + <parameter name="index_desc_json" optional="false" byreference="false" type="string"/> + </method> + <method name="dropIndex" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="index_name" optional="false" byreference="false" type="string"/> + </method> + <method name="existsInDatabase" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + </method> + <method name="find" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\CollectionFind"/> + </docblock> + <parameter name="search_condition" optional="true" byreference="false" type="string"/> + </method> + <method name="getName" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getOne" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="Document"/> + </docblock> + <parameter name="id" optional="false" byreference="false" type="string"/> + </method> + <method name="getSchema" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="Schema Object"/> + </docblock> + </method> + <method name="getSession" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="Session"/> + </docblock> + </method> + <method name="modify" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\CollectionModify"/> + </docblock> + <parameter name="search_condition" optional="false" byreference="false" type="string"/> + </method> + <method name="remove" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\CollectionRemove"/> + </docblock> + <parameter name="search_condition" optional="false" byreference="false" type="string"/> + </method> + <method name="removeOne" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\Result"/> + </docblock> + <parameter name="id" optional="false" byreference="false" type="string"/> + </method> + <method name="replaceOne" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\Result"/> + </docblock> + <parameter name="id" optional="false" byreference="false" type="string"/> + <parameter name="doc" optional="false" byreference="false" type="string"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/mysql_xdevapi_CollectionAdd.xml b/dependencies/php/classes/mysql_xdevapi_CollectionAdd.xml new file mode 100644 index 0000000000000000000000000000000000000000..cc885263aa989e2c604a68c9a72f2ff7a45b4583 --- /dev/null +++ b/dependencies/php/classes/mysql_xdevapi_CollectionAdd.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="mysql_xdevapi\CollectionAdd" namespace="mysql_xdevapi" name="CollectionAdd"> + <implements name="mysql_xdevapi\Executable" full="mysql_xdevapi\Executable"/> + <method name="execute" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\Result"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/mysql_xdevapi_CollectionFind.xml b/dependencies/php/classes/mysql_xdevapi_CollectionFind.xml new file mode 100644 index 0000000000000000000000000000000000000000..e8046bc08ed5d89666d77fcda9c45c945c3fe6c6 --- /dev/null +++ b/dependencies/php/classes/mysql_xdevapi_CollectionFind.xml @@ -0,0 +1,73 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="mysql_xdevapi\CollectionFind" namespace="mysql_xdevapi" name="CollectionFind"> + <implements name="mysql_xdevapi\Executable" full="mysql_xdevapi\Executable"/> + <method name="bind" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\CollectionFind"/> + </docblock> + <parameter name="placeholder_values" optional="false" byreference="false" type="object" class="array"/> + </method> + <method name="execute" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\DocResult"/> + </docblock> + </method> + <method name="fields" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\CollectionFind"/> + </docblock> + <parameter name="projection" optional="false" byreference="false" type="string"/> + </method> + <method name="groupBy" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\CollectionFind"/> + </docblock> + <parameter name="sort_expr" optional="false" byreference="false" type="string"/> + </method> + <method name="having" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\CollectionFind"/> + </docblock> + <parameter name="sort_expr" optional="false" byreference="false" type="string"/> + </method> + <method name="limit" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\CollectionFind"/> + </docblock> + <parameter name="rows" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="lockExclusive" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\CollectionFind"/> + </docblock> + <parameter name="lock_waiting_option" optional="true" byreference="false" type="object" class="integer"/> + </method> + <method name="lockShared" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\CollectionFind"/> + </docblock> + <parameter name="lock_waiting_option" optional="true" byreference="false" type="object" class="integer"/> + </method> + <method name="offset" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\CollectionFind"/> + </docblock> + <parameter name="position" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="sort" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\CollectionFind"/> + </docblock> + <parameter name="sort_expr" optional="false" byreference="false" type="string"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/mysql_xdevapi_CollectionModify.xml b/dependencies/php/classes/mysql_xdevapi_CollectionModify.xml new file mode 100644 index 0000000000000000000000000000000000000000..4c2727c5ad6ddc3e8c7db33cb5145b4844e02713 --- /dev/null +++ b/dependencies/php/classes/mysql_xdevapi_CollectionModify.xml @@ -0,0 +1,84 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="mysql_xdevapi\CollectionModify" namespace="mysql_xdevapi" name="CollectionModify"> + <implements name="mysql_xdevapi\Executable" full="mysql_xdevapi\Executable"/> + <method name="arrayAppend" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\CollectionModify"/> + </docblock> + <parameter name="collection_field" optional="false" byreference="false" type="string"/> + <parameter name="expression_or_literal" optional="false" byreference="false" type="string"/> + </method> + <method name="arrayInsert" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\CollectionModify"/> + </docblock> + <parameter name="collection_field" optional="false" byreference="false" type="string"/> + <parameter name="expression_or_literal" optional="false" byreference="false" type="string"/> + </method> + <method name="bind" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\CollectionModify"/> + </docblock> + <parameter name="placeholder_values" optional="false" byreference="false" type="object" class="array"/> + </method> + <method name="execute" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\Result"/> + </docblock> + </method> + <method name="limit" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\CollectionModify"/> + </docblock> + <parameter name="rows" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="patch" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\CollectionModify"/> + </docblock> + <parameter name="document" optional="false" byreference="false" type="string"/> + </method> + <method name="replace" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\CollectionModify"/> + </docblock> + <parameter name="collection_field" optional="false" byreference="false" type="string"/> + <parameter name="expression_or_literal" optional="false" byreference="false" type="string"/> + </method> + <method name="set" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\CollectionModify"/> + </docblock> + <parameter name="collection_field" optional="false" byreference="false" type="string"/> + <parameter name="expression_or_literal" optional="false" byreference="false" type="string"/> + </method> + <method name="skip" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\CollectionModify"/> + </docblock> + <parameter name="position" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="sort" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\CollectionModify"/> + </docblock> + <parameter name="sort_expr" optional="false" byreference="false" type="string"/> + </method> + <method name="unset" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\CollectionModify"/> + </docblock> + <parameter name="fields" optional="false" byreference="false" type="object" class="array"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/mysql_xdevapi_CollectionRemove.xml b/dependencies/php/classes/mysql_xdevapi_CollectionRemove.xml new file mode 100644 index 0000000000000000000000000000000000000000..04c647f3e5a02800adb8fd3aa9a699d0f21a8748 --- /dev/null +++ b/dependencies/php/classes/mysql_xdevapi_CollectionRemove.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="mysql_xdevapi\CollectionRemove" namespace="mysql_xdevapi" name="CollectionRemove"> + <implements name="mysql_xdevapi\Executable" full="mysql_xdevapi\Executable"/> + <method name="bind" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\CollectionRemove"/> + </docblock> + <parameter name="placeholder_values" optional="false" byreference="false" type="object" class="array"/> + </method> + <method name="execute" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\Result"/> + </docblock> + </method> + <method name="limit" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\CollectionRemove"/> + </docblock> + <parameter name="rows" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="sort" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\CollectionRemove"/> + </docblock> + <parameter name="sort_expr" optional="false" byreference="false" type="string"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/mysql_xdevapi_ColumnResult.xml b/dependencies/php/classes/mysql_xdevapi_ColumnResult.xml new file mode 100644 index 0000000000000000000000000000000000000000..e9e6d4739f72a9e0abf87314860b8dd002293b7d --- /dev/null +++ b/dependencies/php/classes/mysql_xdevapi_ColumnResult.xml @@ -0,0 +1,75 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="mysql_xdevapi\ColumnResult" namespace="mysql_xdevapi" name="ColumnResult"> + <method name="getCharacterSetName" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getCollationName" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getColumnLabel" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getColumnName" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getFractionalDigits" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="integer"/> + </docblock> + </method> + <method name="getLength" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="integer"/> + </docblock> + </method> + <method name="getSchemaName" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getTableLabel" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getTableName" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getType" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="integer"/> + </docblock> + </method> + <method name="isNumberSigned" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="integer"/> + </docblock> + </method> + <method name="isPadded" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="integer"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/mysql_xdevapi_DocResult.xml b/dependencies/php/classes/mysql_xdevapi_DocResult.xml new file mode 100644 index 0000000000000000000000000000000000000000..0b6d852d71ffd92d50539c6c37d3fff4860eee4c --- /dev/null +++ b/dependencies/php/classes/mysql_xdevapi_DocResult.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="mysql_xdevapi\DocResult" namespace="mysql_xdevapi" name="DocResult"> + <implements name="mysql_xdevapi\BaseResult" full="mysql_xdevapi\BaseResult"/> + <method name="fetchAll" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="Array"/> + </docblock> + </method> + <method name="fetchOne" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="Object"/> + </docblock> + </method> + <method name="getWarnings" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="Array"/> + </docblock> + </method> + <method name="getWarningsCount" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="integer"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/mysql_xdevapi_Driver.xml b/dependencies/php/classes/mysql_xdevapi_Driver.xml new file mode 100644 index 0000000000000000000000000000000000000000..26418a0ad21b75fe62341ba455c06169f73dcaf0 --- /dev/null +++ b/dependencies/php/classes/mysql_xdevapi_Driver.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="mysql_xdevapi\Driver" namespace="mysql_xdevapi" name="Driver"> + <constant name="version" value="8.0.3"> + <docblock> + <var type="string"/> + </docblock> + </constant> + <constructor name="__construct" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </constructor> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/mysql_xdevapi_Exception.xml b/dependencies/php/classes/mysql_xdevapi_Exception.xml new file mode 100644 index 0000000000000000000000000000000000000000..df5188e53df1952ff0a14b943219d6e501fbf6fc --- /dev/null +++ b/dependencies/php/classes/mysql_xdevapi_Exception.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="mysql_xdevapi\Exception" namespace="mysql_xdevapi" name="Exception"> + <implements name="Throwable" full="Throwable"/> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/mysql_xdevapi_ExecutionStatus.xml b/dependencies/php/classes/mysql_xdevapi_ExecutionStatus.xml new file mode 100644 index 0000000000000000000000000000000000000000..48bc949d52700c1f9f95f6f4193ddc4565b349bf --- /dev/null +++ b/dependencies/php/classes/mysql_xdevapi_ExecutionStatus.xml @@ -0,0 +1,39 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="mysql_xdevapi\ExecutionStatus" namespace="mysql_xdevapi" name="ExecutionStatus"> + <member name="affectedItems" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact=""/> + </docblock> + </member> + <member name="matchedItems" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact=""/> + </docblock> + </member> + <member name="foundItems" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact=""/> + </docblock> + </member> + <member name="lastInsertId" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact=""/> + </docblock> + </member> + <member name="lastDocumentId" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact=""/> + </docblock> + </member> + <constructor name="__construct" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </constructor> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/mysql_xdevapi_Expression.xml b/dependencies/php/classes/mysql_xdevapi_Expression.xml new file mode 100644 index 0000000000000000000000000000000000000000..426dae83d52148a5ab6b496a94be3f81cf6982e0 --- /dev/null +++ b/dependencies/php/classes/mysql_xdevapi_Expression.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="mysql_xdevapi\Expression" namespace="mysql_xdevapi" name="Expression"> + <member name="name" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact=""/> + </docblock> + </member> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="expression" optional="false" byreference="false" type="string"/> + </constructor> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/mysql_xdevapi_FieldMetadata.xml b/dependencies/php/classes/mysql_xdevapi_FieldMetadata.xml new file mode 100644 index 0000000000000000000000000000000000000000..5ce98238aede3520c49a11a058e42a21a84158f7 --- /dev/null +++ b/dependencies/php/classes/mysql_xdevapi_FieldMetadata.xml @@ -0,0 +1,87 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="mysql_xdevapi\FieldMetadata" namespace="mysql_xdevapi" name="FieldMetadata"> + <member name="type" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact=""/> + </docblock> + </member> + <member name="type_name" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact=""/> + </docblock> + </member> + <member name="name" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact=""/> + </docblock> + </member> + <member name="original_name" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact=""/> + </docblock> + </member> + <member name="table" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact=""/> + </docblock> + </member> + <member name="original_table" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact=""/> + </docblock> + </member> + <member name="schema" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact=""/> + </docblock> + </member> + <member name="catalog" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact=""/> + </docblock> + </member> + <member name="collation" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact=""/> + </docblock> + </member> + <member name="fractional_digits" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact=""/> + </docblock> + </member> + <member name="length" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact=""/> + </docblock> + </member> + <member name="flags" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact=""/> + </docblock> + </member> + <member name="content_type" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact=""/> + </docblock> + </member> + <constructor name="__construct" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </constructor> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/mysql_xdevapi_Result.xml b/dependencies/php/classes/mysql_xdevapi_Result.xml new file mode 100644 index 0000000000000000000000000000000000000000..68e294e03eed20865456d92aaa0d740dd4450a95 --- /dev/null +++ b/dependencies/php/classes/mysql_xdevapi_Result.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="mysql_xdevapi\Result" namespace="mysql_xdevapi" name="Result"> + <implements name="mysql_xdevapi\BaseResult" full="mysql_xdevapi\BaseResult"/> + <method name="getAutoIncrementValue" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="int"/> + </docblock> + </method> + <method name="getGeneratedIds" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="ArrayOfInt"/> + </docblock> + </method> + <method name="getWarnings" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + </method> + <method name="getWarningsCount" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="integer"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/mysql_xdevapi_RowResult.xml b/dependencies/php/classes/mysql_xdevapi_RowResult.xml new file mode 100644 index 0000000000000000000000000000000000000000..b3e48d7995f135d1d9c8e082f279b7662922c861 --- /dev/null +++ b/dependencies/php/classes/mysql_xdevapi_RowResult.xml @@ -0,0 +1,46 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="mysql_xdevapi\RowResult" namespace="mysql_xdevapi" name="RowResult"> + <implements name="mysql_xdevapi\BaseResult" full="mysql_xdevapi\BaseResult"/> + <method name="fetchAll" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + </method> + <method name="fetchOne" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="object"/> + </docblock> + </method> + <method name="getColumnCount" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="integer"/> + </docblock> + </method> + <method name="getColumnNames" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + </method> + <method name="getColumns" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + </method> + <method name="getWarnings" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + </method> + <method name="getWarningsCount" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="integer"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/mysql_xdevapi_Schema.xml b/dependencies/php/classes/mysql_xdevapi_Schema.xml new file mode 100644 index 0000000000000000000000000000000000000000..6e81b96e09d614750cb709be45da2c1f9d8b2ef9 --- /dev/null +++ b/dependencies/php/classes/mysql_xdevapi_Schema.xml @@ -0,0 +1,75 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="mysql_xdevapi\Schema" namespace="mysql_xdevapi" name="Schema"> + <implements name="mysql_xdevapi\DatabaseObject" full="mysql_xdevapi\DatabaseObject"/> + <member name="name" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact=""/> + </docblock> + </member> + <method name="createCollection" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\Collection"/> + </docblock> + <parameter name="name" optional="false" byreference="false" type="string"/> + </method> + <method name="dropCollection" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="collection_name" optional="false" byreference="false" type="string"/> + </method> + <method name="existsInDatabase" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + </method> + <method name="getCollection" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\Collection"/> + </docblock> + <parameter name="name" optional="false" byreference="false" type="string"/> + </method> + <method name="getCollectionAsTable" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\Table"/> + </docblock> + <parameter name="name" optional="false" byreference="false" type="string"/> + </method> + <method name="getCollections" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + </method> + <method name="getName" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getSession" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\Session"/> + </docblock> + </method> + <method name="getTable" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\Table"/> + </docblock> + <parameter name="name" optional="false" byreference="false" type="string"/> + </method> + <method name="getTables" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/mysql_xdevapi_Session.xml b/dependencies/php/classes/mysql_xdevapi_Session.xml new file mode 100644 index 0000000000000000000000000000000000000000..430b9eac75be47e3c2d287815f85493ad724b4c0 --- /dev/null +++ b/dependencies/php/classes/mysql_xdevapi_Session.xml @@ -0,0 +1,127 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="mysql_xdevapi\Session" namespace="mysql_xdevapi" name="Session"> + <method name="close" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + </method> + <method name="commit" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="Object"/> + </docblock> + </method> + <method name="createSchema" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\Schema"/> + </docblock> + <parameter name="schema_name" optional="false" byreference="false" type="string"/> + </method> + <method name="dropSchema" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + <parameter name="schema_name" optional="false" byreference="false" type="string"/> + </method> + <method name="executeSql" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="Object"/> + </docblock> + <parameter name="statement" optional="false" byreference="false" type="string"/> + </method> + <method name="generateUUID" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getClientId" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="integer"/> + </docblock> + </method> + <method name="getSchema" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\Schema"/> + </docblock> + <parameter name="schema_name" optional="false" byreference="false" type="string"/> + </method> + <method name="getSchemas" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + </method> + <method name="getServerVersion" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="integer"/> + </docblock> + </method> + <method name="killClient" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="object"/> + </docblock> + <parameter name="client_id" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="listClients" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + </method> + <method name="quoteName" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + <parameter name="name" optional="false" byreference="false" type="string"/> + </method> + <method name="releaseSavepoint" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="name" optional="false" byreference="false" type="string"/> + </method> + <method name="rollback" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> + <method name="rollbackTo" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + <parameter name="name" optional="false" byreference="false" type="string"/> + </method> + <method name="setSavepoint" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + <parameter name="name" optional="true" byreference="false" type="string"/> + </method> + <method name="sql" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\SqlStatement"/> + </docblock> + <parameter name="query" optional="false" byreference="false" type="string"/> + </method> + <method name="startTransaction" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/mysql_xdevapi_SqlStatement.xml b/dependencies/php/classes/mysql_xdevapi_SqlStatement.xml new file mode 100644 index 0000000000000000000000000000000000000000..c0149aa1d5ec376725071ddc3160e70d18412f7c --- /dev/null +++ b/dependencies/php/classes/mysql_xdevapi_SqlStatement.xml @@ -0,0 +1,50 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="mysql_xdevapi\SqlStatement" namespace="mysql_xdevapi" name="SqlStatement"> + <constant name="EXECUTE_ASYNC" value="1"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="BUFFERED" value="2"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <member name="statement" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact=""/> + </docblock> + </member> + <method name="bind" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\SqlStatement"/> + </docblock> + <parameter name="param" optional="false" byreference="false" type="string"/> + </method> + <method name="execute" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\Result"/> + </docblock> + </method> + <method name="getNextResult" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\Result"/> + </docblock> + </method> + <method name="getResult" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\Result"/> + </docblock> + </method> + <method name="hasMoreResults" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/mysql_xdevapi_SqlStatementResult.xml b/dependencies/php/classes/mysql_xdevapi_SqlStatementResult.xml new file mode 100644 index 0000000000000000000000000000000000000000..f039e22f1246ba3617fd382de91c90f4c1572eff --- /dev/null +++ b/dependencies/php/classes/mysql_xdevapi_SqlStatementResult.xml @@ -0,0 +1,76 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="mysql_xdevapi\SqlStatementResult" namespace="mysql_xdevapi" name="SqlStatementResult"> + <implements name="mysql_xdevapi\BaseResult" full="mysql_xdevapi\BaseResult"/> + <method name="fetchAll" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + </method> + <method name="fetchOne" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="object"/> + </docblock> + </method> + <method name="getAffectedItemsCount" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="integer"/> + </docblock> + </method> + <method name="getColumnCount" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="integer"/> + </docblock> + </method> + <method name="getColumnNames" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + </method> + <method name="getColumns" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="Array"/> + </docblock> + </method> + <method name="getGeneratedIds" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + </method> + <method name="getLastInsertId" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="String"/> + </docblock> + </method> + <method name="getWarnings" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + </method> + <method name="getWarningCounts" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="integer"/> + </docblock> + </method> + <method name="hasData" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + </method> + <method name="nextResult" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\Result"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/mysql_xdevapi_Statement.xml b/dependencies/php/classes/mysql_xdevapi_Statement.xml new file mode 100644 index 0000000000000000000000000000000000000000..477e180f68a1cdd468f08d8cac1125fbf55876fc --- /dev/null +++ b/dependencies/php/classes/mysql_xdevapi_Statement.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="mysql_xdevapi\Statement" namespace="mysql_xdevapi" name="Statement"> + <constant name="EXECUTE_ASYNC" value="1"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <constant name="BUFFERED" value="2"> + <docblock> + <var type="integer"/> + </docblock> + </constant> + <method name="getNextResult" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\Result"/> + </docblock> + </method> + <method name="getResult" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\Result"/> + </docblock> + </method> + <method name="hasMoreResults" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/mysql_xdevapi_Table.xml b/dependencies/php/classes/mysql_xdevapi_Table.xml new file mode 100644 index 0000000000000000000000000000000000000000..feb4c180b418c257c2b1091936ced74e47301467 --- /dev/null +++ b/dependencies/php/classes/mysql_xdevapi_Table.xml @@ -0,0 +1,74 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="mysql_xdevapi\Table" namespace="mysql_xdevapi" name="Table"> + <implements name="mysql_xdevapi\SchemaObject" full="mysql_xdevapi\SchemaObject"/> + <member name="name" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact=""/> + </docblock> + </member> + <method name="count" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="integer"/> + </docblock> + </method> + <method name="delete" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\TableDelete"/> + </docblock> + </method> + <method name="existsInDatabase" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + </method> + <method name="getName" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getSchema" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\Schema"/> + </docblock> + </method> + <method name="getSession" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\Session"/> + </docblock> + </method> + <method name="insert" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\TableInsert"/> + </docblock> + <parameter name="columns" optional="false" byreference="false" type="object" class="mixed"/> + <parameter name="..." optional="true" byreference="false" type="object" class="mixed"/> + </method> + <method name="isView" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + </method> + <method name="select" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\TableSelect"/> + </docblock> + <parameter name="columns" optional="false" byreference="false" type="object" class="mixed"/> + <parameter name="..." optional="true" byreference="false" type="object" class="mixed"/> + </method> + <method name="update" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\TableUpdate"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/mysql_xdevapi_TableDelete.xml b/dependencies/php/classes/mysql_xdevapi_TableDelete.xml new file mode 100644 index 0000000000000000000000000000000000000000..408bef9d22c5181edb3f0efbdac946f8e2bf3c31 --- /dev/null +++ b/dependencies/php/classes/mysql_xdevapi_TableDelete.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="mysql_xdevapi\TableDelete" namespace="mysql_xdevapi" name="TableDelete"> + <implements name="mysql_xdevapi\Executable" full="mysql_xdevapi\Executable"/> + <method name="bind" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\TableDelete"/> + </docblock> + <parameter name="placeholder_values" optional="false" byreference="false" type="object" class="array"/> + </method> + <method name="execute" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\Result"/> + </docblock> + </method> + <method name="limit" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\TableDelete"/> + </docblock> + <parameter name="rows" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="offset" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\TableDelete"/> + </docblock> + <parameter name="position" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="orderby" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\TableDelete"/> + </docblock> + <parameter name="orderby_expr" optional="false" byreference="false" type="string"/> + </method> + <method name="where" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\TableDelete"/> + </docblock> + <parameter name="where_expr" optional="false" byreference="false" type="string"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/mysql_xdevapi_TableInsert.xml b/dependencies/php/classes/mysql_xdevapi_TableInsert.xml new file mode 100644 index 0000000000000000000000000000000000000000..612b60c2ee2343ff98f0a562d66f7dc944bc9195 --- /dev/null +++ b/dependencies/php/classes/mysql_xdevapi_TableInsert.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="mysql_xdevapi\TableInsert" namespace="mysql_xdevapi" name="TableInsert"> + <implements name="mysql_xdevapi\Executable" full="mysql_xdevapi\Executable"/> + <method name="execute" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\Result"/> + </docblock> + </method> + <method name="values" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\TableInsert"/> + </docblock> + <parameter name="row_values" optional="false" byreference="false" type="object" class="array"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/mysql_xdevapi_TableSelect.xml b/dependencies/php/classes/mysql_xdevapi_TableSelect.xml new file mode 100644 index 0000000000000000000000000000000000000000..762d61a39bde6e31126cfd0adc6ccac12eb9cf8d --- /dev/null +++ b/dependencies/php/classes/mysql_xdevapi_TableSelect.xml @@ -0,0 +1,74 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="mysql_xdevapi\TableSelect" namespace="mysql_xdevapi" name="TableSelect"> + <implements name="mysql_xdevapi\Executable" full="mysql_xdevapi\Executable"/> + <method name="bind" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\TableSelect"/> + </docblock> + <parameter name="placeholder_values" optional="false" byreference="false" type="object" class="array"/> + </method> + <method name="execute" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\RowResult"/> + </docblock> + </method> + <method name="groupBy" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\TableSelect"/> + </docblock> + <parameter name="sort_expr" optional="false" byreference="false" type="object" class="mixed"/> + </method> + <method name="having" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\TableSelect"/> + </docblock> + <parameter name="sort_expr" optional="false" byreference="false" type="string"/> + </method> + <method name="limit" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\TableSelect"/> + </docblock> + <parameter name="rows" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="lockExclusive" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\TableSelect"/> + </docblock> + <parameter name="lock_waiting_option" optional="true" byreference="false" type="object" class="integer"/> + </method> + <method name="lockShared" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\TableSelect"/> + </docblock> + <parameter name="lock_waiting_option" optional="true" byreference="false" type="object" class="integer"/> + </method> + <method name="offset" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\TableSelect"/> + </docblock> + <parameter name="position" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="orderby" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\TableSelect"/> + </docblock> + <parameter name="sort_expr" optional="false" byreference="false" type="object" class="mixed"/> + <parameter name="..." optional="true" byreference="false" type="object" class="mixed"/> + </method> + <method name="where" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\TableSelect"/> + </docblock> + <parameter name="where_expr" optional="false" byreference="false" type="string"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/mysql_xdevapi_TableUpdate.xml b/dependencies/php/classes/mysql_xdevapi_TableUpdate.xml new file mode 100644 index 0000000000000000000000000000000000000000..241b0d98d780a63f427918ba6a8f125d865b1a94 --- /dev/null +++ b/dependencies/php/classes/mysql_xdevapi_TableUpdate.xml @@ -0,0 +1,47 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="mysql_xdevapi\TableUpdate" namespace="mysql_xdevapi" name="TableUpdate"> + <implements name="mysql_xdevapi\Executable" full="mysql_xdevapi\Executable"/> + <method name="bind" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\TableUpdate"/> + </docblock> + <parameter name="placeholder_values" optional="false" byreference="false" type="object" class="array"/> + </method> + <method name="execute" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\TableUpdate"/> + </docblock> + </method> + <method name="limit" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\TableUpdate"/> + </docblock> + <parameter name="rows" optional="false" byreference="false" type="object" class="integer"/> + </method> + <method name="orderby" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\TableUpdate"/> + </docblock> + <parameter name="orderby_expr" optional="false" byreference="false" type="object" class="mixed"/> + <parameter name="..." optional="true" byreference="false" type="object" class="mixed"/> + </method> + <method name="set" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\TableUpdate"/> + </docblock> + <parameter name="table_field" optional="false" byreference="false" type="string"/> + <parameter name="expression_or_literal" optional="false" byreference="false" type="string"/> + </method> + <method name="where" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\TableUpdate"/> + </docblock> + <parameter name="where_expr" optional="false" byreference="false" type="string"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/mysql_xdevapi_Warning.xml b/dependencies/php/classes/mysql_xdevapi_Warning.xml new file mode 100644 index 0000000000000000000000000000000000000000..a268f573029f70f13c3239b471d58394a2cae810 --- /dev/null +++ b/dependencies/php/classes/mysql_xdevapi_Warning.xml @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="mysql_xdevapi\Warning" namespace="mysql_xdevapi" name="Warning"> + <member name="message" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact=""/> + </docblock> + </member> + <member name="level" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact=""/> + </docblock> + </member> + <member name="code" static="false" visibility="public"> + <default>null</default> + <docblock> + <description compact=""/> + </docblock> + </member> + <constructor name="__construct" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </constructor> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/mysql_xdevapi_XSession.xml b/dependencies/php/classes/mysql_xdevapi_XSession.xml new file mode 100644 index 0000000000000000000000000000000000000000..395065228bfd6685cebc2e3f1145f9b85a247c0c --- /dev/null +++ b/dependencies/php/classes/mysql_xdevapi_XSession.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="mysql_xdevapi\XSession" namespace="mysql_xdevapi" name="XSession"> + <constructor name="__construct" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="void"/> + </docblock> + </constructor> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/mysqli.xml b/dependencies/php/classes/mysqli.xml index 068655ccbbd7c8b08aca11ec3bfbd2c9e4cfb7b6..b94e46817637969f7158b3fd89327c0674857ae7 100644 --- a/dependencies/php/classes/mysqli.xml +++ b/dependencies/php/classes/mysqli.xml @@ -7,20 +7,6 @@ <var type="int"/> </docblock> </member> - <member name="mysqli->client_info" static="false"> - <default>null</default> - <docblock> - <description compact="Object oriented style">Object oriented style</description> - <var type="string"/> - </docblock> - </member> - <member name="mysqli->client_version" static="false"> - <default>null</default> - <docblock> - <description compact="Object oriented style">Object oriented style</description> - <var type="int"/> - </docblock> - </member> <member name="mysqli->connect_errno" static="false"> <default>null</default> <docblock> @@ -63,6 +49,13 @@ <var type="int"/> </docblock> </member> + <member name="mysqli->client_info" static="false"> + <default>null</default> + <docblock> + <description compact="Object oriented style">Object oriented style</description> + <var type="string"/> + </docblock> + </member> <member name="mysqli->client_version" static="false"> <default>null</default> <docblock> @@ -181,6 +174,18 @@ <parameter name="flags" optional="true" byreference="false" type="int"/> <parameter name="name" optional="true" byreference="false" type="string"/> </method> + <method name="connect" abstract="false" static="false" final="false"> + <docblock> + <description compact="Open a new connection to the MySQL server">Object oriented style</description> + <return type="void"/> + </docblock> + <parameter name="host" optional="true" byreference="false" type="string"/> + <parameter name="username" optional="true" byreference="false" type="string"/> + <parameter name="passwd" optional="true" byreference="false" type="string"/> + <parameter name="dbname" optional="true" byreference="false" type="string"/> + <parameter name="port" optional="true" byreference="false" type="int"/> + <parameter name="socket" optional="true" byreference="false" type="string"/> + </method> <method name="debug" abstract="false" static="false" final="false"> <docblock> <description compact="Performs debugging operations">Object oriented style</description> @@ -212,6 +217,12 @@ <return type="bool"/> </docblock> </method> + <method name="get_server_info" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> <method name="get_warnings" abstract="false" static="false" final="false"> <docblock> <description compact="Get result of SHOW WARNINGS">Object oriented style</description> @@ -305,7 +316,14 @@ </method> <method name="escape_string" abstract="false" static="false" final="false"> <docblock> - <description compact=""/> + <description compact="Escapes special characters in a string for use in an SQL statement, taking into account the current charset of the connection">Object oriented style</description> + <return type="string"/> + </docblock> + <parameter name="escapestr" optional="false" byreference="false" type="string"/> + </method> + <method name="real_escape_string" abstract="false" static="false" final="false"> + <docblock> + <description compact="Escapes special characters in a string for use in an SQL statement, taking into account the current charset of the connection">Object oriented style</description> <return type="string"/> </docblock> <parameter name="escapestr" optional="false" byreference="false" type="string"/> diff --git a/dependencies/php/classes/mysqli_driver.xml b/dependencies/php/classes/mysqli_driver.xml index 472003651aedd8b92ab477b516211a8215593f44..d139041a231c16a269e6aeb72ddb2cb3cdd601d1 100644 --- a/dependencies/php/classes/mysqli_driver.xml +++ b/dependencies/php/classes/mysqli_driver.xml @@ -53,7 +53,7 @@ <description compact="Initialize and start embedded server">Object oriented style</description> <return type="bool"/> </docblock> - <parameter name="start" optional="false" byreference="false" type="object" class="bool"/> + <parameter name="start" optional="false" byreference="false" type="int"/> <parameter name="arguments" optional="false" byreference="false" type="object" class="array"/> <parameter name="groups" optional="false" byreference="false" type="object" class="array"/> </method> diff --git a/dependencies/php/classes/mysqli_stmt.xml b/dependencies/php/classes/mysqli_stmt.xml index 6b7d7ca27e7490a88c23831f97538307f7110623..a308834da6ef0d8ae81055d6931bb2d48a9d8fa2 100644 --- a/dependencies/php/classes/mysqli_stmt.xml +++ b/dependencies/php/classes/mysqli_stmt.xml @@ -147,6 +147,12 @@ </docblock> <parameter name="stmt" optional="false" byreference="false" type="object" class="mysqli_stmt"/> </method> + <method name="num_rows" abstract="false" static="false" final="false"> + <docblock> + <description compact="Return the number of rows in statements result set">Object oriented style</description> + <return type="int"/> + </docblock> + </method> <method name="prepare" abstract="false" static="false" final="false"> <docblock> <description compact="Prepare an SQL statement for execution">Object oriented style</description> diff --git a/dependencies/php/classes/phdfs.xml b/dependencies/php/classes/phdfs.xml new file mode 100644 index 0000000000000000000000000000000000000000..092c213b11c3d83e700257d5aa67454a38ff61cc --- /dev/null +++ b/dependencies/php/classes/phdfs.xml @@ -0,0 +1,118 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="phdfs" namespace="" name="phdfs"> + <member name="host" static="false"> + <default>null</default> + <docblock> + <description compact=""/> + </docblock> + </member> + <member name="port" static="false"> + <default>null</default> + <docblock> + <description compact=""/> + </docblock> + </member> + <method name="connect" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Description"/> + <return type="bool"/> + </docblock> + </method> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Description"/> + <return type="void"/> + </docblock> + <parameter name="ip" optional="false" byreference="false" type="string"/> + <parameter name="port" optional="false" byreference="false" type="string"/> + </constructor> + <method name="copy" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Description"/> + <return type="bool"/> + </docblock> + <parameter name="source_file" optional="false" byreference="false" type="string"/> + <parameter name="destination_file" optional="false" byreference="false" type="string"/> + </method> + <method name="create_directory" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Description"/> + <return type="bool"/> + </docblock> + <parameter name="path" optional="false" byreference="false" type="string"/> + </method> + <method name="delete" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Description"/> + <return type="bool"/> + </docblock> + <parameter name="path" optional="false" byreference="false" type="string"/> + </method> + <destructor name="__destruct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Description"/> + <return type="void"/> + </docblock> + </destructor> + <method name="disconnect" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Description"/> + <return type="bool"/> + </docblock> + </method> + <method name="exists" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Description"/> + <return type="bool"/> + </docblock> + <parameter name="path" optional="false" byreference="false" type="string"/> + </method> + <method name="file_info" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Description"/> + <return type="array"/> + </docblock> + <parameter name="path" optional="false" byreference="false" type="string"/> + </method> + <method name="list_directory" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Description"/> + <return type="array"/> + </docblock> + <parameter name="path" optional="false" byreference="false" type="string"/> + <parameter name="level" optional="true" byreference="false" type="int"/> + </method> + <method name="read" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Description"/> + <return type="string"/> + </docblock> + <parameter name="path" optional="false" byreference="false" type="string"/> + <parameter name="length" optional="true" byreference="false" type="int"/> + </method> + <method name="rename" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Description"/> + <return type="bool"/> + </docblock> + <parameter name="old_path" optional="false" byreference="false" type="string"/> + <parameter name="new_path" optional="false" byreference="false" type="string"/> + </method> + <method name="tell" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Description"/> + <return type="int"/> + </docblock> + <parameter name="path" optional="false" byreference="false" type="string"/> + <parameter name="read_length" optional="true" byreference="false" type="int"/> + </method> + <method name="write" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Description"/> + <return type="bool"/> + </docblock> + <parameter name="path" optional="false" byreference="false" type="string"/> + <parameter name="buffer" optional="false" byreference="false" type="string"/> + <parameter name="mode" optional="true" byreference="false" type="int"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/pht_AtomicInteger.xml b/dependencies/php/classes/pht_AtomicInteger.xml new file mode 100644 index 0000000000000000000000000000000000000000..3da46c261e1658191f06ebc4947fb2999a9611cb --- /dev/null +++ b/dependencies/php/classes/pht_AtomicInteger.xml @@ -0,0 +1,48 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="pht\AtomicInteger" namespace="pht" name="AtomicInteger"> + <implements name="pht\Threaded" full="pht\Threaded"/> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="AtomicInteger creation"/> + <return type="AtomicInteger"/> + </docblock> + <parameter name="value" optional="true" byreference="false" type="int"/> + </constructor> + <method name="dec" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Decrements the atomic integer's value by one"/> + <return type="void"/> + </docblock> + </method> + <method name="get" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Gets the atomic integer's value"/> + <return type="int"/> + </docblock> + </method> + <method name="inc" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Increments the atomic integer's value by one"/> + <return type="void"/> + </docblock> + </method> + <method name="lock" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Acquires the atomic integer's mutex lock">This method will acquire the mutex lock associated with the atomic integer. The mutex lock only needs to be acquired when needing to group together multiple operations.</description> + <return type="void"/> + </docblock> + </method> + <method name="set" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Sets the atomic integer's value"/> + <return type="void"/> + </docblock> + <parameter name="value" optional="false" byreference="false" type="int"/> + </method> + <method name="unlock" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Releases the atomic integer's mutex lock"/> + <return type="void"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/pht_HashTable.xml b/dependencies/php/classes/pht_HashTable.xml new file mode 100644 index 0000000000000000000000000000000000000000..256f143b1e76d1ee16ef72297ab16f6d5e9d0977 --- /dev/null +++ b/dependencies/php/classes/pht_HashTable.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="pht\HashTable" namespace="pht" name="HashTable"> + <implements name="pht\Threaded" full="pht\Threaded"/> + <method name="lock" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Acquires the hash table's mutex lock">This method will acquire the mutex lock associated with the hash table. The mutex lock should always be acquired when manipulating the hash table if it is being used by multiple threads.</description> + <return type="void"/> + </docblock> + </method> + <method name="size" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Gets the size of the hash table"/> + <return type="int"/> + </docblock> + </method> + <method name="unlock" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Releases the hash table's mutex lock"/> + <return type="void"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/pht_Queue.xml b/dependencies/php/classes/pht_Queue.xml new file mode 100644 index 0000000000000000000000000000000000000000..50d72a5d0ff2471f76c66f95263f31fec3cc7cbc --- /dev/null +++ b/dependencies/php/classes/pht_Queue.xml @@ -0,0 +1,41 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="pht\Queue" namespace="pht" name="Queue"> + <implements name="pht\Threaded" full="pht\Threaded"/> + <method name="front" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Returns the first value from a queue">This method will remove a value from the front of the queue (in constant time). Attempting to return the front value from an empty queue will result in an Error exception.</description> + <return type="mixed"/> + </docblock> + </method> + <method name="lock" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Acquires the queue's mutex lock">This method will acquire the mutex lock associated with the queue. The mutex lock should always be acquired when manipulating the queue if it is being used by multiple threads.</description> + <return type="void"/> + </docblock> + </method> + <method name="pop" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Pops a value off of the front of a queue"/> + <return type="mixed"/> + </docblock> + </method> + <method name="push" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Pushes a value to the end of a queue"/> + <return type="void"/> + </docblock> + <parameter name="value" optional="false" byreference="false" type="object" class="mixed"/> + </method> + <method name="size" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Gets the size of the queue"/> + <return type="int"/> + </docblock> + </method> + <method name="unlock" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Releases the queue's mutex lock"/> + <return type="void"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/pht_Thread.xml b/dependencies/php/classes/pht_Thread.xml new file mode 100644 index 0000000000000000000000000000000000000000..9109ad499ab76fb78250e29f79a8e76af3ce3be4 --- /dev/null +++ b/dependencies/php/classes/pht_Thread.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="pht\Thread" namespace="pht" name="Thread"> + <method name="addClassTask" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Class threading"/> + <return type="void"/> + </docblock> + <parameter name="className" optional="false" byreference="false" type="string"/> + <parameter name="...ctorArgs" optional="true" byreference="false" type="object" class="mixed"/> + </method> + <method name="addFileTask" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="File threading"/> + <return type="void"/> + </docblock> + <parameter name="fileName" optional="false" byreference="false" type="string"/> + <parameter name="...globals" optional="true" byreference="false" type="object" class="mixed"/> + </method> + <method name="addFunctionTask" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Function threading"/> + <return type="void"/> + </docblock> + <parameter name="func" optional="false" byreference="false" type="object" class="callable"/> + <parameter name="...funcArgs" optional="true" byreference="false" type="object" class="mixed"/> + </method> + <method name="join" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Joins a thread"/> + <return type="void"/> + </docblock> + </method> + <method name="start" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Starts the new thread"/> + <return type="void"/> + </docblock> + </method> + <method name="taskCount" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Gets a thread's task count"/> + <return type="int"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/pht_Vector.xml b/dependencies/php/classes/pht_Vector.xml new file mode 100644 index 0000000000000000000000000000000000000000..6622b117cbca3e5136cfdbed6785daba46c066f2 --- /dev/null +++ b/dependencies/php/classes/pht_Vector.xml @@ -0,0 +1,87 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="pht\Vector" namespace="pht" name="Vector"> + <implements name="pht\Threaded" full="pht\Threaded"/> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Vector creation"/> + <return type="Vector"/> + </docblock> + <parameter name="size" optional="true" byreference="false" type="int"/> + <parameter name="value" optional="true" byreference="false" type="object" class="mixed"/> + </constructor> + <method name="deleteAt" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Deletes a value in the vector">This method deletes a value at the specified offset in the vector (in linear time).</description> + <return type="void"/> + </docblock> + <parameter name="offset" optional="false" byreference="false" type="int"/> + </method> + <method name="insertAt" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Inserts a value into the vector"/> + <return type="void"/> + </docblock> + <parameter name="value" optional="false" byreference="false" type="object" class="mixed"/> + <parameter name="offset" optional="false" byreference="false" type="int"/> + </method> + <method name="lock" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Acquires the vector's mutex lock">This method will acquire the mutex lock associated with the vector. The mutex lock should always be acquired when manipulating the vector if it is being used by multiple threads.</description> + <return type="void"/> + </docblock> + </method> + <method name="pop" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Pops a value to the vector"/> + <return type="mixed"/> + </docblock> + </method> + <method name="push" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Pushes a value to the vector">This method pushes a value onto the end of a vector (in constant time). The vector will automatically be resized if it is not large enough.</description> + <return type="void"/> + </docblock> + <parameter name="value" optional="false" byreference="false" type="object" class="mixed"/> + </method> + <method name="resize" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Resizes a vector"/> + <return type="void"/> + </docblock> + <parameter name="size" optional="false" byreference="false" type="int"/> + <parameter name="value" optional="true" byreference="false" type="object" class="mixed"/> + </method> + <method name="shift" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Shifts a value from the vector"/> + <return type="mixed"/> + </docblock> + </method> + <method name="size" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Gets the size of the vector"/> + <return type="int"/> + </docblock> + </method> + <method name="unlock" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Releases the vector's mutex lock"/> + <return type="void"/> + </docblock> + </method> + <method name="unshift" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Unshifts a value to the vector front"/> + <return type="void"/> + </docblock> + <parameter name="value" optional="false" byreference="false" type="object" class="mixed"/> + </method> + <method name="updateAt" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Updates a value in the vector">This method updates a value at the specified offset in the vector (in linear time). The vector will automatically be resized if it is not large enough.</description> + <return type="void"/> + </docblock> + <parameter name="value" optional="false" byreference="false" type="object" class="mixed"/> + <parameter name="offset" optional="false" byreference="false" type="int"/> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/tidy.xml b/dependencies/php/classes/tidy.xml index 9703e6be852330e67ba6e37a0df1462c04ca64bd..c1d199d76dc83f8bb332dc86f33b08b45784b445 100644 --- a/dependencies/php/classes/tidy.xml +++ b/dependencies/php/classes/tidy.xml @@ -1,25 +1,25 @@ <?xml version="1.0" encoding="UTF-8" ?> <class xmlns="http://xml.phpdox.net/src" full="tidy" namespace="" name="tidy"> - <member name="tidy->errorBuffer" static="false"> + <member name="tidy->errorBuffer" static="false" visibility="public"> <default>null</default> <docblock> <description compact="Object oriented style (property):">Object oriented style (property):</description> <var type="string"/> </docblock> </member> - <method name="body" abstract="false" static="false" final="false"> + <method name="body" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Returns a tidyNode object starting from the <body> tag of the tidy parse tree">Object oriented style</description> <return type="tidyNode"/> </docblock> </method> - <method name="cleanRepair" abstract="false" static="false" final="false"> + <method name="cleanRepair" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Execute configured cleanup and repair operations on parsed markup">Object oriented style</description> <return type="bool"/> </docblock> </method> - <constructor name="__construct" abstract="false" static="false" final="false"> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Constructs a new tidy object"/> <return type="void"/> @@ -29,75 +29,75 @@ <parameter name="encoding" optional="true" byreference="false" type="string"/> <parameter name="use_include_path" optional="true" byreference="false" type="object" class="bool"/> </constructor> - <method name="diagnose" abstract="false" static="false" final="false"> + <method name="diagnose" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Run configured diagnostics on parsed and repaired markup">Object oriented style</description> <return type="bool"/> </docblock> </method> - <method name="getConfig" abstract="false" static="false" final="false"> + <method name="getConfig" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Get current Tidy configuration">Object oriented style</description> <return type="array"/> </docblock> </method> - <method name="getHtmlVer" abstract="false" static="false" final="false"> + <method name="getHtmlVer" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Get the Detected HTML version for the specified document">Object oriented style</description> <return type="int"/> </docblock> </method> - <method name="getOpt" abstract="false" static="false" final="false"> + <method name="getOpt" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Returns the value of the specified configuration option for the tidy document">Object oriented style</description> <return type="mixed"/> </docblock> <parameter name="option" optional="false" byreference="false" type="string"/> </method> - <method name="getOptDoc" abstract="false" static="false" final="false"> + <method name="getOptDoc" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=" Returns the documentation for the given option name ">Object oriented style</description> <return type="string"/> </docblock> <parameter name="optname" optional="false" byreference="false" type="string"/> </method> - <method name="getRelease" abstract="false" static="false" final="false"> + <method name="getRelease" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Get release date (version) for Tidy library">Object oriented style</description> <return type="string"/> </docblock> </method> - <method name="getStatus" abstract="false" static="false" final="false"> + <method name="getStatus" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Get status of specified document">Object oriented style</description> <return type="int"/> </docblock> </method> - <method name="head" abstract="false" static="false" final="false"> + <method name="head" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Returns a tidyNode object starting from the <head> tag of the tidy parse tree">Object oriented style</description> <return type="tidyNode"/> </docblock> </method> - <method name="html" abstract="false" static="false" final="false"> + <method name="html" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Returns a tidyNode object starting from the <html> tag of the tidy parse tree">Object oriented style</description> <return type="tidyNode"/> </docblock> </method> - <method name="isXhtml" abstract="false" static="false" final="false"> + <method name="isXhtml" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Indicates if the document is a XHTML document">Object oriented style</description> <return type="bool"/> </docblock> </method> - <method name="isXml" abstract="false" static="false" final="false"> + <method name="isXml" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Indicates if the document is a generic (non HTML/XHTML) XML document">Object oriented style</description> <return type="bool"/> </docblock> </method> - <method name="parseFile" abstract="false" static="false" final="false"> + <method name="parseFile" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Parse markup in file or URI">Object oriented style</description> <return type="bool"/> @@ -107,7 +107,7 @@ <parameter name="encoding" optional="true" byreference="false" type="string"/> <parameter name="use_include_path" optional="true" byreference="false" type="object" class="bool"/> </method> - <method name="parseString" abstract="false" static="false" final="false"> + <method name="parseString" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Parse a document stored in a string">Object oriented style</description> <return type="bool"/> @@ -116,7 +116,7 @@ <parameter name="config" optional="true" byreference="false" type="object" class="mixed"/> <parameter name="encoding" optional="true" byreference="false" type="string"/> </method> - <method name="repairFile" abstract="false" static="false" final="false"> + <method name="repairFile" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Repair a file and return it as a string">Object oriented style</description> <return type="string"/> @@ -126,7 +126,7 @@ <parameter name="encoding" optional="true" byreference="false" type="string"/> <parameter name="use_include_path" optional="true" byreference="false" type="object" class="bool"/> </method> - <method name="repairString" abstract="false" static="false" final="false"> + <method name="repairString" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Repair a string using an optionally provided configuration file">Object oriented style</description> <return type="string"/> @@ -135,7 +135,7 @@ <parameter name="config" optional="true" byreference="false" type="object" class="mixed"/> <parameter name="encoding" optional="true" byreference="false" type="string"/> </method> - <method name="root" abstract="false" static="false" final="false"> + <method name="root" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Returns a tidyNode object representing the root of the tidy parse tree">Object oriented style</description> <return type="tidyNode"/> diff --git a/dependencies/php/classes/tidyNode.xml b/dependencies/php/classes/tidyNode.xml index a59e81259014f60707f80340a2f92806f2b5c030..c81e766a18308a27d8b2e5afebdf60ff3d19b632 100644 --- a/dependencies/php/classes/tidyNode.xml +++ b/dependencies/php/classes/tidyNode.xml @@ -1,117 +1,123 @@ <?xml version="1.0" encoding="UTF-8" ?> <class xmlns="http://xml.phpdox.net/src" full="tidyNode" namespace="" name="tidyNode"> - <member name="value" static="false"> + <member name="value" static="false" visibility="public"> <default>null</default> <docblock> <description compact="The HTML representation of the node, including the surrounding tags."/> <var type="string"/> </docblock> </member> - <member name="name" static="false"> + <member name="name" static="false" visibility="public"> <default>null</default> <docblock> <description compact="The name of the HTML node"/> <var type="string"/> </docblock> </member> - <member name="type" static="false"> + <member name="type" static="false" visibility="public"> <default>null</default> <docblock> - <description compact="The type of the tag (one of the constants above, e.g. TIDY_NODETYPE_PHP)"/> + <description compact="The type of the node (one of the nodetype constants, e.g. TIDY_NODETYPE_PHP)"/> <var type="int"/> </docblock> </member> - <member name="line" static="false"> + <member name="line" static="false" visibility="public"> <default>null</default> <docblock> <description compact="The line number at which the tags is located in the file"/> <var type="int"/> </docblock> </member> - <member name="column" static="false"> + <member name="column" static="false" visibility="public"> <default>null</default> <docblock> <description compact="The column number at which the tags is located in the file"/> <var type="int"/> </docblock> </member> - <member name="proprietary" static="false"> + <member name="proprietary" static="false" visibility="public"> <default>null</default> <docblock> <description compact="Indicates if the node is a proprietary tag"/> <var type="bool"/> </docblock> </member> - <member name="id" static="false"> + <member name="id" static="false" visibility="public"> <default>null</default> <docblock> - <description compact="The ID of the tag (one of the constants above, e.g. TIDY_TAG_FRAME)"/> + <description compact="The ID of the node (one of the tag constants, e.g. TIDY_TAG_FRAME)"/> <var type="int"/> </docblock> </member> - <member name="attribute" static="false"> + <member name="attribute" static="false" visibility="public"> <default>null</default> <docblock> <description compact="An array of string, representing the attributes names (as keys) of the current node."/> <var type="array"/> </docblock> </member> - <member name="child" static="false"> + <member name="child" static="false" visibility="public"> <default>null</default> <docblock> <description compact="An array of tidyNode, representing the children of the current node."/> <var type="array"/> </docblock> </member> - <method name="getParent" abstract="false" static="false" final="false"> + <constructor name="__construct" abstract="false" static="false" final="false"> + <docblock> + <description compact="Private constructor to disallow direct instantiation"/> + <return type="void"/> + </docblock> + </constructor> + <method name="getParent" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Returns the parent node of the current node"/> <return type="tidyNode"/> </docblock> </method> - <method name="hasChildren" abstract="false" static="false" final="false"> + <method name="hasChildren" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Checks if a node has children"/> <return type="bool"/> </docblock> </method> - <method name="hasSiblings" abstract="false" static="false" final="false"> + <method name="hasSiblings" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Checks if a node has siblings"/> <return type="bool"/> </docblock> </method> - <method name="isAsp" abstract="false" static="false" final="false"> + <method name="isAsp" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Checks if this node is ASP"/> <return type="bool"/> </docblock> </method> - <method name="isComment" abstract="false" static="false" final="false"> + <method name="isComment" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Checks if a node represents a comment"/> <return type="bool"/> </docblock> </method> - <method name="isHtml" abstract="false" static="false" final="false"> + <method name="isHtml" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Checks if a node is part of a HTML document"/> <return type="bool"/> </docblock> </method> - <method name="isJste" abstract="false" static="false" final="false"> + <method name="isJste" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Checks if this node is JSTE"/> <return type="bool"/> </docblock> </method> - <method name="isPhp" abstract="false" static="false" final="false"> + <method name="isPhp" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Checks if a node is PHP"/> <return type="bool"/> </docblock> </method> - <method name="isText" abstract="false" static="false" final="false"> + <method name="isText" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Checks if a node represents text (no markup)"/> <return type="bool"/> diff --git a/dependencies/php/classes/wkhtmltox_Image_Converter.xml b/dependencies/php/classes/wkhtmltox_Image_Converter.xml new file mode 100644 index 0000000000000000000000000000000000000000..097df3170fbfad2fe427969b1b6894f5ffb62abc --- /dev/null +++ b/dependencies/php/classes/wkhtmltox_Image_Converter.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="wkhtmltox\Image\Converter" namespace="wkhtmltox\Image" name="Converter"> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Create a new Image converter"/> + <return type="void"/> + </docblock> + <parameter name="buffer" optional="true" byreference="false" type="string"/> + <parameter name="settings" optional="true" byreference="false" type="object" class="array"/> + </constructor> + <method name="convert" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Perform Image conversion"/> + <return type="?string"/> + </docblock> + </method> + <method name="getVersion" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Determine version of Converter"/> + <return type="string"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/wkhtmltox_PDF_Converter.xml b/dependencies/php/classes/wkhtmltox_PDF_Converter.xml new file mode 100644 index 0000000000000000000000000000000000000000..9d68abc62ce5eabab5fb1a0610cc755fad3d74cd --- /dev/null +++ b/dependencies/php/classes/wkhtmltox_PDF_Converter.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="wkhtmltox\PDF\Converter" namespace="wkhtmltox\PDF" name="Converter"> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Create a new PDF converter"/> + <return type="void"/> + </docblock> + <parameter name="settings" optional="true" byreference="false" type="object" class="array"/> + </constructor> + <method name="add" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Add an object for conversion"/> + <return type="void"/> + </docblock> + <parameter name="object" optional="false" byreference="false" type="object" class="wkhtmltox\PDF\Object"/> + </method> + <method name="convert" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Perform PDF conversion"/> + <return type="?string"/> + </docblock> + </method> + <method name="getVersion" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Determine version of Converter"/> + <return type="string"/> + </docblock> + </method> +</class> \ No newline at end of file diff --git a/dependencies/php/classes/wkhtmltox_PDF_Object.xml b/dependencies/php/classes/wkhtmltox_PDF_Object.xml new file mode 100644 index 0000000000000000000000000000000000000000..0e4974592c0166105242c1562b6bd233ce2e7a4a --- /dev/null +++ b/dependencies/php/classes/wkhtmltox_PDF_Object.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class xmlns="http://xml.phpdox.net/src" full="wkhtmltox\PDF\Object" namespace="wkhtmltox\PDF" name="Object"> + <constructor name="__construct" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Create a new PDF Object"/> + <return type="void"/> + </docblock> + <parameter name="buffer" optional="false" byreference="false" type="string"/> + <parameter name="settings" optional="true" byreference="false" type="object" class="array"/> + </constructor> +</class> \ No newline at end of file diff --git a/dependencies/php/index.xml b/dependencies/php/index.xml index 17593636a50e1c9386bbde1e7a540777391b3d4a..68dfd7b8ea14f9d11e84c33abee40cb09436c30c 100644 --- a/dependencies/php/index.xml +++ b/dependencies/php/index.xml @@ -4,9 +4,11 @@ <class name="Exception" xml="classes/Exception.xml"/> <class name="ErrorException" xml="classes/ErrorException.xml"/> <class name="Error" xml="classes/Error.xml"/> + <class name="ArgumentCountError" xml="classes/ArgumentCountError.xml"/> <class name="ArithmeticError" xml="classes/ArithmeticError.xml"/> <class name="AssertionError" xml="classes/AssertionError.xml"/> <class name="DivisionByZeroError" xml="classes/DivisionByZeroError.xml"/> + <class name="CompileError" xml="classes/CompileError.xml"/> <class name="ParseError" xml="classes/ParseError.xml"/> <class name="TypeError" xml="classes/TypeError.xml"/> <class name="Closure" xml="classes/Closure.xml"/> @@ -29,6 +31,7 @@ <class name="RarEntry" xml="classes/RarEntry.xml"/> <class name="RarException" xml="classes/RarException.xml"/> <class name="ZipArchive" xml="classes/ZipArchive.xml"/> + <class name="HashContext" xml="classes/HashContext.xml"/> <class name="PDO" xml="classes/PDO.xml"/> <class name="PDOStatement" xml="classes/PDOStatement.xml"/> <class name="PDOException" xml="classes/PDOException.xml"/> @@ -68,40 +71,6 @@ <class name="MongoProtocolException" xml="classes/MongoProtocolException.xml"/> <class name="MongoExecutionTimeoutException" xml="classes/MongoExecutionTimeoutException.xml"/> <class name="MongoWriteConcernException" xml="classes/MongoWriteConcernException.xml"/> - <class name="MongoDB\Driver\Manager" xml="classes/MongoDB_Driver_Manager.xml"/> - <class name="MongoDB\Driver\Command" xml="classes/MongoDB_Driver_Command.xml"/> - <class name="MongoDB\Driver\Query" xml="classes/MongoDB_Driver_Query.xml"/> - <class name="MongoDB\Driver\BulkWrite" xml="classes/MongoDB_Driver_BulkWrite.xml"/> - <class name="MongoDB\Driver\WriteConcern" xml="classes/MongoDB_Driver_WriteConcern.xml"/> - <class name="MongoDB\Driver\ReadPreference" xml="classes/MongoDB_Driver_ReadPreference.xml"/> - <class name="MongoDB\Driver\ReadConcern" xml="classes/MongoDB_Driver_ReadConcern.xml"/> - <class name="MongoDB\Driver\Cursor" xml="classes/MongoDB_Driver_Cursor.xml"/> - <class name="MongoDB\Driver\CursorId" xml="classes/MongoDB_Driver_CursorId.xml"/> - <class name="MongoDB\Driver\Server" xml="classes/MongoDB_Driver_Server.xml"/> - <class name="MongoDB\Driver\WriteConcernError" xml="classes/MongoDB_Driver_WriteConcernError.xml"/> - <class name="MongoDB\Driver\WriteError" xml="classes/MongoDB_Driver_WriteError.xml"/> - <class name="MongoDB\Driver\WriteResult" xml="classes/MongoDB_Driver_WriteResult.xml"/> - <class name="MongoDB\BSON\Binary" xml="classes/MongoDB_BSON_Binary.xml"/> - <class name="MongoDB\BSON\Decimal128" xml="classes/MongoDB_BSON_Decimal128.xml"/> - <class name="MongoDB\BSON\Javascript" xml="classes/MongoDB_BSON_Javascript.xml"/> - <class name="MongoDB\BSON\MaxKey" xml="classes/MongoDB_BSON_MaxKey.xml"/> - <class name="MongoDB\BSON\MinKey" xml="classes/MongoDB_BSON_MinKey.xml"/> - <class name="MongoDB\BSON\ObjectID" xml="classes/MongoDB_BSON_ObjectID.xml"/> - <class name="MongoDB\BSON\Regex" xml="classes/MongoDB_BSON_Regex.xml"/> - <class name="MongoDB\BSON\Timestamp" xml="classes/MongoDB_BSON_Timestamp.xml"/> - <class name="MongoDB\BSON\UTCDateTime" xml="classes/MongoDB_BSON_UTCDateTime.xml"/> - <class name="MongoDB\BSON\Persistable" xml="classes/MongoDB_BSON_Persistable.xml"/> - <class name="MongoDB\Driver\Exception\AuthenticationException" xml="classes/MongoDB_Driver_Exception_AuthenticationException.xml"/> - <class name="MongoDB\Driver\Exception\BulkWriteException" xml="classes/MongoDB_Driver_Exception_BulkWriteException.xml"/> - <class name="MongoDB\Driver\Exception\ConnectionException" xml="classes/MongoDB_Driver_Exception_ConnectionException.xml"/> - <class name="MongoDB\Driver\Exception\ConnectionTimeoutException" xml="classes/MongoDB_Driver_Exception_ConnectionTimeoutException.xml"/> - <class name="MongoDB\Driver\Exception\ExecutionTimeoutException" xml="classes/MongoDB_Driver_Exception_ExecutionTimeoutException.xml"/> - <class name="MongoDB\Driver\Exception\InvalidArgumentException" xml="classes/MongoDB_Driver_Exception_InvalidArgumentException.xml"/> - <class name="MongoDB\Driver\Exception\LogicException" xml="classes/MongoDB_Driver_Exception_LogicException.xml"/> - <class name="MongoDB\Driver\Exception\RuntimeException" xml="classes/MongoDB_Driver_Exception_RuntimeException.xml"/> - <class name="MongoDB\Driver\Exception\SSLConnectionException" xml="classes/MongoDB_Driver_Exception_SSLConnectionException.xml"/> - <class name="MongoDB\Driver\Exception\UnexpectedValueException" xml="classes/MongoDB_Driver_Exception_UnexpectedValueException.xml"/> - <class name="MongoDB\Driver\Exception\WriteException" xml="classes/MongoDB_Driver_Exception_WriteException.xml"/> <class name="mysqli" xml="classes/mysqli.xml"/> <class name="mysqli_stmt" xml="classes/mysqli_stmt.xml"/> <class name="mysqli_result" xml="classes/mysqli_result.xml"/> @@ -125,18 +94,16 @@ <class name="DateTimeZone" xml="classes/DateTimeZone.xml"/> <class name="DateInterval" xml="classes/DateInterval.xml"/> <class name="DatePeriod" xml="classes/DatePeriod.xml"/> - <class name="HRTime\PerformanceCounter" xml="classes/HRTime_PerformanceCounter.xml"/> - <class name="HRTime\StopWatch" xml="classes/HRTime_StopWatch.xml"/> - <class name="HRTime\Unit" xml="classes/HRTime_Unit.xml"/> <class name="Directory" xml="classes/Directory.xml"/> <class name="finfo" xml="classes/finfo.xml"/> - <class name="Gender\Gender" xml="classes/Gender_Gender.xml"/> + <class name="phdfs" xml="classes/phdfs.xml"/> <class name="Collator" xml="classes/Collator.xml"/> <class name="NumberFormatter" xml="classes/NumberFormatter.xml"/> <class name="Locale" xml="classes/Locale.xml"/> <class name="Normalizer" xml="classes/Normalizer.xml"/> <class name="MessageFormatter" xml="classes/MessageFormatter.xml"/> <class name="IntlCalendar" xml="classes/IntlCalendar.xml"/> + <class name="IntlGregorianCalendar" xml="classes/IntlGregorianCalendar.xml"/> <class name="IntlTimeZone" xml="classes/IntlTimeZone.xml"/> <class name="IntlDateFormatter" xml="classes/IntlDateFormatter.xml"/> <class name="ResourceBundle" xml="classes/ResourceBundle.xml"/> @@ -248,15 +215,18 @@ <class name="Pool" xml="classes/Pool.xml"/> <class name="Mutex" xml="classes/Mutex.xml"/> <class name="Cond" xml="classes/Cond.xml"/> + <class name="Volatile" xml="classes/Volatile.xml"/> <class name="SyncMutex" xml="classes/SyncMutex.xml"/> <class name="SyncSemaphore" xml="classes/SyncSemaphore.xml"/> <class name="SyncEvent" xml="classes/SyncEvent.xml"/> <class name="SyncReaderWriter" xml="classes/SyncReaderWriter.xml"/> <class name="SyncSharedMemory" xml="classes/SyncSharedMemory.xml"/> <class name="FANNConnection" xml="classes/FANNConnection.xml"/> + <class name="JsonException" xml="classes/JsonException.xml"/> <class name="Judy" xml="classes/Judy.xml"/> <class name="Lua" xml="classes/Lua.xml"/> <class name="LuaClosure" xml="classes/LuaClosure.xml"/> + <class name="SeasLog" xml="classes/SeasLog.xml"/> <class name="SplDoublyLinkedList" xml="classes/SplDoublyLinkedList.xml"/> <class name="SplStack" xml="classes/SplStack.xml"/> <class name="SplQueue" xml="classes/SplQueue.xml"/> @@ -352,6 +322,7 @@ <class name="Yaf_Exception_LoadFailed_Controller" xml="classes/Yaf_Exception_LoadFailed_Controller.xml"/> <class name="Yaf_Exception_LoadFailed_Action" xml="classes/Yaf_Exception_LoadFailed_Action.xml"/> <class name="Yaf_Exception_LoadFailed_View" xml="classes/Yaf_Exception_LoadFailed_View.xml"/> + <class name="Yaconf" xml="classes/Yaconf.xml"/> <class name="chdb" xml="classes/chdb.xml"/> <class name="CURLFile" xml="classes/CURLFile.xml"/> <class name="Event" xml="classes/Event.xml"/> @@ -393,6 +364,14 @@ <class name="ZMQPoll" xml="classes/ZMQPoll.xml"/> <class name="ZMQDevice" xml="classes/ZMQDevice.xml"/> <class name="Zookeeper" xml="classes/Zookeeper.xml"/> + <class name="ZookeeperConfig" xml="classes/ZookeeperConfig.xml"/> + <class name="ZookeeperException" xml="classes/ZookeeperException.xml"/> + <class name="ZookeeperAuthenticationException" xml="classes/ZookeeperAuthenticationException.xml"/> + <class name="ZookeeperConnectionException" xml="classes/ZookeeperConnectionException.xml"/> + <class name="ZookeeperMarshallingException" xml="classes/ZookeeperMarshallingException.xml"/> + <class name="ZookeeperNoNodeException" xml="classes/ZookeeperNoNodeException.xml"/> + <class name="ZookeeperOperationTimeoutException" xml="classes/ZookeeperOperationTimeoutException.xml"/> + <class name="ZookeeperSessionException" xml="classes/ZookeeperSessionException.xml"/> <class name="SolrUtils" xml="classes/SolrUtils.xml"/> <class name="SolrInputDocument" xml="classes/SolrInputDocument.xml"/> <class name="SolrDocument" xml="classes/SolrDocument.xml"/> @@ -417,25 +396,19 @@ <class name="SolrMissingMandatoryParameterException" xml="classes/SolrMissingMandatoryParameterException.xml"/> <class name="SphinxClient" xml="classes/SphinxClient.xml"/> <class name="SessionHandler" xml="classes/SessionHandler.xml"/> - <class name="Ds\Vector" xml="classes/Ds_Vector.xml"/> - <class name="Ds\Deque" xml="classes/Ds_Deque.xml"/> - <class name="Ds\Map" xml="classes/Ds_Map.xml"/> - <class name="Ds\Pair" xml="classes/Ds_Pair.xml"/> - <class name="Ds\Set" xml="classes/Ds_Set.xml"/> - <class name="Ds\Stack" xml="classes/Ds_Stack.xml"/> - <class name="Ds\Queue" xml="classes/Ds_Queue.xml"/> - <class name="Ds\PriorityQueue" xml="classes/Ds_PriorityQueue.xml"/> <class name="QuickHashIntSet" xml="classes/QuickHashIntSet.xml"/> <class name="QuickHashIntHash" xml="classes/QuickHashIntHash.xml"/> <class name="QuickHashStringIntHash" xml="classes/QuickHashStringIntHash.xml"/> <class name="QuickHashIntStringHash" xml="classes/QuickHashIntStringHash.xml"/> <class name="Reflection" xml="classes/Reflection.xml"/> <class name="ReflectionClass" xml="classes/ReflectionClass.xml"/> + <class name="ReflectionClassConstant" xml="classes/ReflectionClassConstant.xml"/> <class name="ReflectionZendExtension" xml="classes/ReflectionZendExtension.xml"/> <class name="ReflectionExtension" xml="classes/ReflectionExtension.xml"/> <class name="ReflectionFunction" xml="classes/ReflectionFunction.xml"/> <class name="ReflectionFunctionAbstract" xml="classes/ReflectionFunctionAbstract.xml"/> <class name="ReflectionMethod" xml="classes/ReflectionMethod.xml"/> + <class name="ReflectionNamedType" xml="classes/ReflectionNamedType.xml"/> <class name="ReflectionObject" xml="classes/ReflectionObject.xml"/> <class name="ReflectionParameter" xml="classes/ReflectionParameter.xml"/> <class name="ReflectionProperty" xml="classes/ReflectionProperty.xml"/> @@ -478,59 +451,8 @@ <class name="libXMLError" xml="classes/libXMLError.xml"/> <class name="SimpleXMLElement" xml="classes/SimpleXMLElement.xml"/> <class name="SimpleXMLIterator" xml="classes/SimpleXMLIterator.xml"/> - <class name="XMLDiff\Base" xml="classes/XMLDiff_Base.xml"/> - <class name="XMLDiff\DOM" xml="classes/XMLDiff_DOM.xml"/> - <class name="XMLDiff\Memory" xml="classes/XMLDiff_Memory.xml"/> - <class name="XMLDiff\File" xml="classes/XMLDiff_File.xml"/> <class name="XMLReader" xml="classes/XMLReader.xml"/> <class name="XSLTProcessor" xml="classes/XSLTProcessor.xml"/> - <class name="UI\Point" xml="classes/UI_Point.xml"/> - <class name="UI\Size" xml="classes/UI_Size.xml"/> - <class name="UI\Window" xml="classes/UI_Window.xml"/> - <class name="UI\Control" xml="classes/UI_Control.xml"/> - <class name="UI\Menu" xml="classes/UI_Menu.xml"/> - <class name="UI\MenuItem" xml="classes/UI_MenuItem.xml"/> - <class name="UI\Area" xml="classes/UI_Area.xml"/> - <class name="UI\Executor" xml="classes/UI_Executor.xml"/> - <class name="UI\Controls\Tab" xml="classes/UI_Controls_Tab.xml"/> - <class name="UI\Controls\Check" xml="classes/UI_Controls_Check.xml"/> - <class name="UI\Controls\Button" xml="classes/UI_Controls_Button.xml"/> - <class name="UI\Controls\ColorButton" xml="classes/UI_Controls_ColorButton.xml"/> - <class name="UI\Controls\Label" xml="classes/UI_Controls_Label.xml"/> - <class name="UI\Controls\Entry" xml="classes/UI_Controls_Entry.xml"/> - <class name="UI\Controls\MultilineEntry" xml="classes/UI_Controls_MultilineEntry.xml"/> - <class name="UI\Controls\Spin" xml="classes/UI_Controls_Spin.xml"/> - <class name="UI\Controls\Slider" xml="classes/UI_Controls_Slider.xml"/> - <class name="UI\Controls\Progress" xml="classes/UI_Controls_Progress.xml"/> - <class name="UI\Controls\Separator" xml="classes/UI_Controls_Separator.xml"/> - <class name="UI\Controls\Combo" xml="classes/UI_Controls_Combo.xml"/> - <class name="UI\Controls\EditableCombo" xml="classes/UI_Controls_EditableCombo.xml"/> - <class name="UI\Controls\Radio" xml="classes/UI_Controls_Radio.xml"/> - <class name="UI\Controls\Picker" xml="classes/UI_Controls_Picker.xml"/> - <class name="UI\Controls\Form" xml="classes/UI_Controls_Form.xml"/> - <class name="UI\Controls\Grid" xml="classes/UI_Controls_Grid.xml"/> - <class name="UI\Controls\Group" xml="classes/UI_Controls_Group.xml"/> - <class name="UI\Controls\Box" xml="classes/UI_Controls_Box.xml"/> - <class name="UI\Draw\Pen" xml="classes/UI_Draw_Pen.xml"/> - <class name="UI\Draw\Path" xml="classes/UI_Draw_Path.xml"/> - <class name="UI\Draw\Matrix" xml="classes/UI_Draw_Matrix.xml"/> - <class name="UI\Draw\Color" xml="classes/UI_Draw_Color.xml"/> - <class name="UI\Draw\Stroke" xml="classes/UI_Draw_Stroke.xml"/> - <class name="UI\Draw\Brush" xml="classes/UI_Draw_Brush.xml"/> - <class name="UI\Draw\Brush\Gradient" xml="classes/UI_Draw_Brush_Gradient.xml"/> - <class name="UI\Draw\Brush\LinearGradient" xml="classes/UI_Draw_Brush_LinearGradient.xml"/> - <class name="UI\Draw\Brush\RadialGradient" xml="classes/UI_Draw_Brush_RadialGradient.xml"/> - <class name="UI\Draw\Text\Layout" xml="classes/UI_Draw_Text_Layout.xml"/> - <class name="UI\Draw\Text\Font" xml="classes/UI_Draw_Text_Font.xml"/> - <class name="UI\Draw\Text\Font\Descriptor" xml="classes/UI_Draw_Text_Font_Descriptor.xml"/> - <class name="UI\Draw\Text\Font\Weight" xml="classes/UI_Draw_Text_Font_Weight.xml"/> - <class name="UI\Draw\Text\Font\Italic" xml="classes/UI_Draw_Text_Font_Italic.xml"/> - <class name="UI\Draw\Text\Font\Stretch" xml="classes/UI_Draw_Text_Font_Stretch.xml"/> - <class name="UI\Draw\Line\Cap" xml="classes/UI_Draw_Line_Cap.xml"/> - <class name="UI\Draw\Line\Join" xml="classes/UI_Draw_Line_Join.xml"/> - <class name="UI\Key" xml="classes/UI_Key.xml"/> - <class name="UI\Exception\InvalidArgumentException" xml="classes/UI_Exception_InvalidArgumentException.xml"/> - <class name="UI\Exception\RuntimeException" xml="classes/UI_Exception_RuntimeException.xml"/> <class name="Counter" xml="classes/Counter.xml"/> <interface name="Traversable" xml="interfaces/Traversable.xml"/> <interface name="Iterator" xml="interfaces/Iterator.xml"/> @@ -539,10 +461,6 @@ <interface name="ArrayAccess" xml="interfaces/ArrayAccess.xml"/> <interface name="Serializable" xml="interfaces/Serializable.xml"/> <interface name="MongoCursorInterface" xml="interfaces/MongoCursorInterface.xml"/> - <interface name="MongoDB\BSON\Type" xml="interfaces/MongoDB_BSON_Type.xml"/> - <interface name="MongoDB\BSON\Serializable" xml="interfaces/MongoDB_BSON_Serializable.xml"/> - <interface name="MongoDB\BSON\Unserializable" xml="interfaces/MongoDB_BSON_Unserializable.xml"/> - <interface name="MongoDB\Driver\Exception\Exception" xml="interfaces/MongoDB_Driver_Exception_Exception.xml"/> <interface name="DateTimeInterface" xml="interfaces/DateTimeInterface.xml"/> <interface name="Collectable" xml="interfaces/Collectable.xml"/> <interface name="JsonSerializable" xml="interfaces/JsonSerializable.xml"/> @@ -556,9 +474,312 @@ <interface name="Yaf_Route_Interface" xml="interfaces/Yaf_Route_Interface.xml"/> <interface name="Yaf_Router" xml="interfaces/Yaf_Router.xml"/> <interface name="SessionHandlerInterface" xml="interfaces/SessionHandlerInterface.xml"/> - <interface name="Ds\Collection" xml="interfaces/Ds_Collection.xml"/> - <interface name="Ds\Hashable" xml="interfaces/Ds_Hashable.xml"/> - <interface name="Ds\Sequence" xml="interfaces/Ds_Sequence.xml"/> + <interface name="SessionIdInterface" xml="interfaces/SessionIdInterface.xml"/> + <interface name="SessionUpdateTimestampHandlerInterface" xml="interfaces/SessionUpdateTimestampHandlerInterface.xml"/> <interface name="Reflector" xml="interfaces/Reflector.xml"/> </namespace> + <namespace name="Componere\Abstract"> + <class name="Definition" xml="classes/Componere_Abstract_Definition.xml"/> + </namespace> + <namespace name="Componere"> + <class name="Definition" xml="classes/Componere_Definition.xml"/> + <class name="Patch" xml="classes/Componere_Patch.xml"/> + <class name="Method" xml="classes/Componere_Method.xml"/> + <class name="Value" xml="classes/Componere_Value.xml"/> + </namespace> + <namespace name="MongoDB\Driver"> + <class name="Manager" xml="classes/MongoDB_Driver_Manager.xml"/> + <class name="Command" xml="classes/MongoDB_Driver_Command.xml"/> + <class name="Query" xml="classes/MongoDB_Driver_Query.xml"/> + <class name="BulkWrite" xml="classes/MongoDB_Driver_BulkWrite.xml"/> + <class name="Session" xml="classes/MongoDB_Driver_Session.xml"/> + <class name="WriteConcern" xml="classes/MongoDB_Driver_WriteConcern.xml"/> + <class name="ReadPreference" xml="classes/MongoDB_Driver_ReadPreference.xml"/> + <class name="ReadConcern" xml="classes/MongoDB_Driver_ReadConcern.xml"/> + <class name="Cursor" xml="classes/MongoDB_Driver_Cursor.xml"/> + <class name="CursorId" xml="classes/MongoDB_Driver_CursorId.xml"/> + <class name="Server" xml="classes/MongoDB_Driver_Server.xml"/> + <class name="WriteConcernError" xml="classes/MongoDB_Driver_WriteConcernError.xml"/> + <class name="WriteError" xml="classes/MongoDB_Driver_WriteError.xml"/> + <class name="WriteResult" xml="classes/MongoDB_Driver_WriteResult.xml"/> + </namespace> + <namespace name="MongoDB\BSON"> + <class name="Binary" xml="classes/MongoDB_BSON_Binary.xml"/> + <class name="Decimal128" xml="classes/MongoDB_BSON_Decimal128.xml"/> + <class name="Javascript" xml="classes/MongoDB_BSON_Javascript.xml"/> + <class name="MaxKey" xml="classes/MongoDB_BSON_MaxKey.xml"/> + <class name="MinKey" xml="classes/MongoDB_BSON_MinKey.xml"/> + <class name="ObjectId" xml="classes/MongoDB_BSON_ObjectId.xml"/> + <class name="Regex" xml="classes/MongoDB_BSON_Regex.xml"/> + <class name="Timestamp" xml="classes/MongoDB_BSON_Timestamp.xml"/> + <class name="UTCDateTime" xml="classes/MongoDB_BSON_UTCDateTime.xml"/> + <class name="DBPointer" xml="classes/MongoDB_BSON_DBPointer.xml"/> + <class name="Int64" xml="classes/MongoDB_BSON_Int64.xml"/> + <class name="Symbol" xml="classes/MongoDB_BSON_Symbol.xml"/> + <class name="Undefined" xml="classes/MongoDB_BSON_Undefined.xml"/> + <interface name="Type" xml="interfaces/MongoDB_BSON_Type.xml"/> + <interface name="Persistable" xml="interfaces/MongoDB_BSON_Persistable.xml"/> + <interface name="Serializable" xml="interfaces/MongoDB_BSON_Serializable.xml"/> + <interface name="Unserializable" xml="interfaces/MongoDB_BSON_Unserializable.xml"/> + <interface name="BinaryInterface" xml="interfaces/MongoDB_BSON_BinaryInterface.xml"/> + <interface name="Decimal128Interface" xml="interfaces/MongoDB_BSON_Decimal128Interface.xml"/> + <interface name="JavascriptInterface" xml="interfaces/MongoDB_BSON_JavascriptInterface.xml"/> + <interface name="MaxKeyInterface" xml="interfaces/MongoDB_BSON_MaxKeyInterface.xml"/> + <interface name="MinKeyInterface" xml="interfaces/MongoDB_BSON_MinKeyInterface.xml"/> + <interface name="ObjectIdInterface" xml="interfaces/MongoDB_BSON_ObjectIdInterface.xml"/> + <interface name="RegexInterface" xml="interfaces/MongoDB_BSON_RegexInterface.xml"/> + <interface name="TimestampInterface" xml="interfaces/MongoDB_BSON_TimestampInterface.xml"/> + <interface name="UTCDateTimeInterface" xml="interfaces/MongoDB_BSON_UTCDateTimeInterface.xml"/> + </namespace> + <namespace name="MongoDB\Driver\Monitoring"> + <class name="CommandFailedEvent" xml="classes/MongoDB_Driver_Monitoring_CommandFailedEvent.xml"/> + <class name="CommandStartedEvent" xml="classes/MongoDB_Driver_Monitoring_CommandStartedEvent.xml"/> + <class name="CommandSucceededEvent" xml="classes/MongoDB_Driver_Monitoring_CommandSucceededEvent.xml"/> + <interface name="CommandSubscriber" xml="interfaces/MongoDB_Driver_Monitoring_CommandSubscriber.xml"/> + <interface name="Subscriber" xml="interfaces/MongoDB_Driver_Monitoring_Subscriber.xml"/> + </namespace> + <namespace name="MongoDB\Driver\Exception"> + <class name="AuthenticationException" xml="classes/MongoDB_Driver_Exception_AuthenticationException.xml"/> + <class name="BulkWriteException" xml="classes/MongoDB_Driver_Exception_BulkWriteException.xml"/> + <class name="CommandException" xml="classes/MongoDB_Driver_Exception_CommandException.xml"/> + <class name="ConnectionException" xml="classes/MongoDB_Driver_Exception_ConnectionException.xml"/> + <class name="ConnectionTimeoutException" xml="classes/MongoDB_Driver_Exception_ConnectionTimeoutException.xml"/> + <class name="ExecutionTimeoutException" xml="classes/MongoDB_Driver_Exception_ExecutionTimeoutException.xml"/> + <class name="InvalidArgumentException" xml="classes/MongoDB_Driver_Exception_InvalidArgumentException.xml"/> + <class name="LogicException" xml="classes/MongoDB_Driver_Exception_LogicException.xml"/> + <class name="RuntimeException" xml="classes/MongoDB_Driver_Exception_RuntimeException.xml"/> + <class name="ServerException" xml="classes/MongoDB_Driver_Exception_ServerException.xml"/> + <class name="SSLConnectionException" xml="classes/MongoDB_Driver_Exception_SSLConnectionException.xml"/> + <class name="UnexpectedValueException" xml="classes/MongoDB_Driver_Exception_UnexpectedValueException.xml"/> + <class name="WriteException" xml="classes/MongoDB_Driver_Exception_WriteException.xml"/> + <interface name="Exception" xml="interfaces/MongoDB_Driver_Exception_Exception.xml"/> + </namespace> + <namespace name="mysql_xdevapi"> + <class name="Collection" xml="classes/mysql_xdevapi_Collection.xml"/> + <class name="CollectionAdd" xml="classes/mysql_xdevapi_CollectionAdd.xml"/> + <class name="CollectionFind" xml="classes/mysql_xdevapi_CollectionFind.xml"/> + <class name="CollectionModify" xml="classes/mysql_xdevapi_CollectionModify.xml"/> + <class name="CollectionRemove" xml="classes/mysql_xdevapi_CollectionRemove.xml"/> + <class name="ColumnResult" xml="classes/mysql_xdevapi_ColumnResult.xml"/> + <class name="DocResult" xml="classes/mysql_xdevapi_DocResult.xml"/> + <class name="Driver" xml="classes/mysql_xdevapi_Driver.xml"/> + <class name="Exception" xml="classes/mysql_xdevapi_Exception.xml"/> + <class name="ExecutionStatus" xml="classes/mysql_xdevapi_ExecutionStatus.xml"/> + <class name="Expression" xml="classes/mysql_xdevapi_Expression.xml"/> + <class name="FieldMetadata" xml="classes/mysql_xdevapi_FieldMetadata.xml"/> + <class name="Result" xml="classes/mysql_xdevapi_Result.xml"/> + <class name="RowResult" xml="classes/mysql_xdevapi_RowResult.xml"/> + <class name="Schema" xml="classes/mysql_xdevapi_Schema.xml"/> + <class name="Session" xml="classes/mysql_xdevapi_Session.xml"/> + <class name="SqlStatement" xml="classes/mysql_xdevapi_SqlStatement.xml"/> + <class name="SqlStatementResult" xml="classes/mysql_xdevapi_SqlStatementResult.xml"/> + <class name="Statement" xml="classes/mysql_xdevapi_Statement.xml"/> + <class name="Table" xml="classes/mysql_xdevapi_Table.xml"/> + <class name="TableDelete" xml="classes/mysql_xdevapi_TableDelete.xml"/> + <class name="TableInsert" xml="classes/mysql_xdevapi_TableInsert.xml"/> + <class name="TableSelect" xml="classes/mysql_xdevapi_TableSelect.xml"/> + <class name="TableUpdate" xml="classes/mysql_xdevapi_TableUpdate.xml"/> + <class name="Warning" xml="classes/mysql_xdevapi_Warning.xml"/> + <class name="XSession" xml="classes/mysql_xdevapi_XSession.xml"/> + <interface name="BaseResult" xml="interfaces/mysql_xdevapi_BaseResult.xml"/> + <interface name="CrudOperationBindable" xml="interfaces/mysql_xdevapi_CrudOperationBindable.xml"/> + <interface name="CrudOperationLimitable" xml="interfaces/mysql_xdevapi_CrudOperationLimitable.xml"/> + <interface name="CrudOperationSkippable" xml="interfaces/mysql_xdevapi_CrudOperationSkippable.xml"/> + <interface name="CrudOperationSortable" xml="interfaces/mysql_xdevapi_CrudOperationSortable.xml"/> + <interface name="DatabaseObject" xml="interfaces/mysql_xdevapi_DatabaseObject.xml"/> + <interface name="Executable" xml="interfaces/mysql_xdevapi_Executable.xml"/> + <interface name="SchemaObject" xml="interfaces/mysql_xdevapi_SchemaObject.xml"/> + </namespace> + <namespace name="HRTime"> + <class name="PerformanceCounter" xml="classes/HRTime_PerformanceCounter.xml"/> + <class name="StopWatch" xml="classes/HRTime_StopWatch.xml"/> + <class name="Unit" xml="classes/HRTime_Unit.xml"/> + </namespace> + <namespace name="Gender"> + <class name="Gender" xml="classes/Gender_Gender.xml"/> + </namespace> + <namespace name="wkhtmltox\PDF"> + <class name="Converter" xml="classes/wkhtmltox_PDF_Converter.xml"/> + <class name="Object" xml="classes/wkhtmltox_PDF_Object.xml"/> + </namespace> + <namespace name="wkhtmltox\Image"> + <class name="Converter" xml="classes/wkhtmltox_Image_Converter.xml"/> + </namespace> + <namespace name="Vtiful\Kernel"> + <class name="Excel" xml="classes/Vtiful_Kernel_Excel.xml"/> + <class name="Format" xml="classes/Vtiful_Kernel_Format.xml"/> + </namespace> + <namespace name="pht"> + <class name="Thread" xml="classes/pht_Thread.xml"/> + <class name="HashTable" xml="classes/pht_HashTable.xml"/> + <class name="Vector" xml="classes/pht_Vector.xml"/> + <class name="Queue" xml="classes/pht_Queue.xml"/> + <class name="AtomicInteger" xml="classes/pht_AtomicInteger.xml"/> + <interface name="Runnable" xml="interfaces/pht_Runnable.xml"/> + <interface name="Threaded" xml="interfaces/pht_Threaded.xml"/> + </namespace> + <namespace name="Swoole"> + <class name="Async" xml="classes/Swoole_Async.xml"/> + <class name="Atomic" xml="classes/Swoole_Atomic.xml"/> + <class name="Buffer" xml="classes/Swoole_Buffer.xml"/> + <class name="Channel" xml="classes/Swoole_Channel.xml"/> + <class name="Client" xml="classes/Swoole_Client.xml"/> + <class name="Coroutine" xml="classes/Swoole_Coroutine.xml"/> + <class name="Event" xml="classes/Swoole_Event.xml"/> + <class name="Exception" xml="classes/Swoole_Exception.xml"/> + <class name="Lock" xml="classes/Swoole_Lock.xml"/> + <class name="Mmap" xml="classes/Swoole_Mmap.xml"/> + <class name="MySQL" xml="classes/Swoole_MySQL.xml"/> + <class name="Process" xml="classes/Swoole_Process.xml"/> + <class name="Serialize" xml="classes/Swoole_Serialize.xml"/> + <class name="Server" xml="classes/Swoole_Server.xml"/> + <class name="Table" xml="classes/Swoole_Table.xml"/> + <class name="Timer" xml="classes/Swoole_Timer.xml"/> + </namespace> + <namespace name="Swoole\Connection"> + <class name="Iterator" xml="classes/Swoole_Connection_Iterator.xml"/> + </namespace> + <namespace name="Swoole\Http"> + <class name="Client" xml="classes/Swoole_Http_Client.xml"/> + <class name="Request" xml="classes/Swoole_Http_Request.xml"/> + <class name="Response" xml="classes/Swoole_Http_Response.xml"/> + <class name="Server" xml="classes/Swoole_Http_Server.xml"/> + </namespace> + <namespace name="Swoole\MySQL"> + <class name="Exception" xml="classes/Swoole_MySQL_Exception.xml"/> + </namespace> + <namespace name="Swoole\Redis"> + <class name="Server" xml="classes/Swoole_Redis_Server.xml"/> + </namespace> + <namespace name="Swoole\WebSocket"> + <class name="Frame" xml="classes/Swoole_WebSocket_Frame.xml"/> + <class name="Server" xml="classes/Swoole_WebSocket_Server.xml"/> + </namespace> + <namespace name="Ds"> + <class name="Vector" xml="classes/Ds_Vector.xml"/> + <class name="Deque" xml="classes/Ds_Deque.xml"/> + <class name="Map" xml="classes/Ds_Map.xml"/> + <class name="Pair" xml="classes/Ds_Pair.xml"/> + <class name="Set" xml="classes/Ds_Set.xml"/> + <class name="Stack" xml="classes/Ds_Stack.xml"/> + <class name="Queue" xml="classes/Ds_Queue.xml"/> + <class name="PriorityQueue" xml="classes/Ds_PriorityQueue.xml"/> + <interface name="Collection" xml="interfaces/Ds_Collection.xml"/> + <interface name="Hashable" xml="interfaces/Ds_Hashable.xml"/> + <interface name="Sequence" xml="interfaces/Ds_Sequence.xml"/> + </namespace> + <namespace name="CommonMark\Node"> + <class name="Document" xml="classes/CommonMark_Node_Document.xml"/> + <class name="Heading" xml="classes/CommonMark_Node_Heading.xml"/> + <class name="Paragraph" xml="classes/CommonMark_Node_Paragraph.xml"/> + <class name="BlockQuote" xml="classes/CommonMark_Node_BlockQuote.xml"/> + <class name="BulletList" xml="classes/CommonMark_Node_BulletList.xml"/> + <class name="OrderedList" xml="classes/CommonMark_Node_OrderedList.xml"/> + <class name="Item" xml="classes/CommonMark_Node_Item.xml"/> + <class name="Text" xml="classes/CommonMark_Node_Text.xml"/> + <class name="ThematicBreak" xml="classes/CommonMark_Node_ThematicBreak.xml"/> + <class name="SoftBreak" xml="classes/CommonMark_Node_SoftBreak.xml"/> + <class name="LineBreak" xml="classes/CommonMark_Node_LineBreak.xml"/> + <class name="Code" xml="classes/CommonMark_Node_Code.xml"/> + <class name="CodeBlock" xml="classes/CommonMark_Node_CodeBlock.xml"/> + <class name="HTMLBlock" xml="classes/CommonMark_Node_HTMLBlock.xml"/> + <class name="HTMLInline" xml="classes/CommonMark_Node_HTMLInline.xml"/> + <class name="Image" xml="classes/CommonMark_Node_Image.xml"/> + <class name="Link" xml="classes/CommonMark_Node_Link.xml"/> + <class name="CustomBlock" xml="classes/CommonMark_Node_CustomBlock.xml"/> + <class name="CustomInline" xml="classes/CommonMark_Node_CustomInline.xml"/> + </namespace> + <namespace name="CommonMark\Node\Text"> + <class name="Strong" xml="classes/CommonMark_Node_Text_Strong.xml"/> + <class name="Emphasis" xml="classes/CommonMark_Node_Text_Emphasis.xml"/> + </namespace> + <namespace name="CommonMark"> + <class name="Node" xml="classes/CommonMark_Node.xml"/> + <class name="Parser" xml="classes/CommonMark_Parser.xml"/> + <class name="CQL" xml="classes/CommonMark_CQL.xml"/> + </namespace> + <namespace name="CommonMark\Interfaces"> + <class name="IVisitor" xml="classes/CommonMark_Interfaces_IVisitor.xml"/> + <interface name="IVisitable" xml="interfaces/CommonMark_Interfaces_IVisitable.xml"/> + </namespace> + <namespace name="Parle"> + <class name="Lexer" xml="classes/Parle_Lexer.xml"/> + <class name="RLexer" xml="classes/Parle_RLexer.xml"/> + <class name="Parser" xml="classes/Parle_Parser.xml"/> + <class name="RParser" xml="classes/Parle_RParser.xml"/> + <class name="Stack" xml="classes/Parle_Stack.xml"/> + <class name="Token" xml="classes/Parle_Token.xml"/> + <class name="ErrorInfo" xml="classes/Parle_ErrorInfo.xml"/> + <class name="LexerException" xml="classes/Parle_LexerException.xml"/> + <class name="ParserException" xml="classes/Parle_ParserException.xml"/> + </namespace> + <namespace name="XMLDiff"> + <class name="Base" xml="classes/XMLDiff_Base.xml"/> + <class name="DOM" xml="classes/XMLDiff_DOM.xml"/> + <class name="Memory" xml="classes/XMLDiff_Memory.xml"/> + <class name="File" xml="classes/XMLDiff_File.xml"/> + </namespace> + <namespace name="UI"> + <class name="Point" xml="classes/UI_Point.xml"/> + <class name="Size" xml="classes/UI_Size.xml"/> + <class name="Window" xml="classes/UI_Window.xml"/> + <class name="Control" xml="classes/UI_Control.xml"/> + <class name="Menu" xml="classes/UI_Menu.xml"/> + <class name="MenuItem" xml="classes/UI_MenuItem.xml"/> + <class name="Area" xml="classes/UI_Area.xml"/> + <class name="Executor" xml="classes/UI_Executor.xml"/> + <class name="Key" xml="classes/UI_Key.xml"/> + </namespace> + <namespace name="UI\Controls"> + <class name="Tab" xml="classes/UI_Controls_Tab.xml"/> + <class name="Check" xml="classes/UI_Controls_Check.xml"/> + <class name="Button" xml="classes/UI_Controls_Button.xml"/> + <class name="ColorButton" xml="classes/UI_Controls_ColorButton.xml"/> + <class name="Label" xml="classes/UI_Controls_Label.xml"/> + <class name="Entry" xml="classes/UI_Controls_Entry.xml"/> + <class name="MultilineEntry" xml="classes/UI_Controls_MultilineEntry.xml"/> + <class name="Spin" xml="classes/UI_Controls_Spin.xml"/> + <class name="Slider" xml="classes/UI_Controls_Slider.xml"/> + <class name="Progress" xml="classes/UI_Controls_Progress.xml"/> + <class name="Separator" xml="classes/UI_Controls_Separator.xml"/> + <class name="Combo" xml="classes/UI_Controls_Combo.xml"/> + <class name="EditableCombo" xml="classes/UI_Controls_EditableCombo.xml"/> + <class name="Radio" xml="classes/UI_Controls_Radio.xml"/> + <class name="Picker" xml="classes/UI_Controls_Picker.xml"/> + <class name="Form" xml="classes/UI_Controls_Form.xml"/> + <class name="Grid" xml="classes/UI_Controls_Grid.xml"/> + <class name="Group" xml="classes/UI_Controls_Group.xml"/> + <class name="Box" xml="classes/UI_Controls_Box.xml"/> + </namespace> + <namespace name="UI\Draw"> + <class name="Pen" xml="classes/UI_Draw_Pen.xml"/> + <class name="Path" xml="classes/UI_Draw_Path.xml"/> + <class name="Matrix" xml="classes/UI_Draw_Matrix.xml"/> + <class name="Color" xml="classes/UI_Draw_Color.xml"/> + <class name="Stroke" xml="classes/UI_Draw_Stroke.xml"/> + <class name="Brush" xml="classes/UI_Draw_Brush.xml"/> + </namespace> + <namespace name="UI\Draw\Brush"> + <class name="Gradient" xml="classes/UI_Draw_Brush_Gradient.xml"/> + <class name="LinearGradient" xml="classes/UI_Draw_Brush_LinearGradient.xml"/> + <class name="RadialGradient" xml="classes/UI_Draw_Brush_RadialGradient.xml"/> + </namespace> + <namespace name="UI\Draw\Text"> + <class name="Layout" xml="classes/UI_Draw_Text_Layout.xml"/> + <class name="Font" xml="classes/UI_Draw_Text_Font.xml"/> + </namespace> + <namespace name="UI\Draw\Text\Font"> + <class name="Descriptor" xml="classes/UI_Draw_Text_Font_Descriptor.xml"/> + <class name="Weight" xml="classes/UI_Draw_Text_Font_Weight.xml"/> + <class name="Italic" xml="classes/UI_Draw_Text_Font_Italic.xml"/> + <class name="Stretch" xml="classes/UI_Draw_Text_Font_Stretch.xml"/> + </namespace> + <namespace name="UI\Draw\Line"> + <class name="Cap" xml="classes/UI_Draw_Line_Cap.xml"/> + <class name="Join" xml="classes/UI_Draw_Line_Join.xml"/> + </namespace> + <namespace name="UI\Exception"> + <class name="InvalidArgumentException" xml="classes/UI_Exception_InvalidArgumentException.xml"/> + <class name="RuntimeException" xml="classes/UI_Exception_RuntimeException.xml"/> + </namespace> </index> diff --git a/dependencies/php/interfaces/ArrayAccess.xml b/dependencies/php/interfaces/ArrayAccess.xml index 49748b2fb9a06833a9be9e6b0edde5a96a77182e..5c885a025995e2f35bd07af939dd4dd24bb1f091 100644 --- a/dependencies/php/interfaces/ArrayAccess.xml +++ b/dependencies/php/interfaces/ArrayAccess.xml @@ -3,7 +3,7 @@ <method name="offsetExists" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Whether an offset exists">Whether or not an offset exists.</description> - <return type="boolean"/> + <return type="bool"/> </docblock> <parameter name="offset" optional="false" byreference="false" type="object" class="mixed"/> </method> diff --git a/dependencies/php/interfaces/Collectable.xml b/dependencies/php/interfaces/Collectable.xml index 5a1bfe63edc457fe8464b03e0ccf4ec0dbe2fee5..3b5736a7a4732244c5f6a183cdb05ca434f5e9e2 100644 --- a/dependencies/php/interfaces/Collectable.xml +++ b/dependencies/php/interfaces/Collectable.xml @@ -1,6 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> <interface xmlns="http://xml.phpdox.net/src" full="Collectable" namespace="" name="Collectable"> - <extends name="Threaded" full="Threaded"/> <method name="isGarbage" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Determine whether an object has been marked as garbage"/> diff --git a/dependencies/php/interfaces/CommonMark_Interfaces_IVisitable.xml b/dependencies/php/interfaces/CommonMark_Interfaces_IVisitable.xml new file mode 100644 index 0000000000000000000000000000000000000000..4777eaa3b21bbf3ed2e2bde331f6598dd4c3c615 --- /dev/null +++ b/dependencies/php/interfaces/CommonMark_Interfaces_IVisitable.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<interface xmlns="http://xml.phpdox.net/src" full="CommonMark\Interfaces\IVisitable" namespace="CommonMark\Interfaces" name="IVisitable"> + <method name="accept" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Visitation"/> + <return type="void"/> + </docblock> + <parameter name="visitor" optional="false" byreference="false" type="object" class="CommonMark\Interfaces\IVisitor"/> + </method> +</interface> \ No newline at end of file diff --git a/dependencies/php/interfaces/DateTimeInterface.xml b/dependencies/php/interfaces/DateTimeInterface.xml index f87f4f9c6733648cc206c94764e4942b573093a0..200872b2cf53d32e7492ce76c424918f9abb0918 100644 --- a/dependencies/php/interfaces/DateTimeInterface.xml +++ b/dependencies/php/interfaces/DateTimeInterface.xml @@ -1,5 +1,65 @@ <?xml version="1.0" encoding="UTF-8" ?> <interface xmlns="http://xml.phpdox.net/src" full="DateTimeInterface" namespace="" name="DateTimeInterface"> + <constant name="ATOM" value=""Y-m-d\TH:i:sP""> + <docblock> + <var type="string"/> + </docblock> + </constant> + <constant name="COOKIE" value=""l, d-M-Y H:i:s T""> + <docblock> + <var type="string"/> + </docblock> + </constant> + <constant name="ISO8601" value=""Y-m-d\TH:i:sO""> + <docblock> + <var type="string"/> + </docblock> + </constant> + <constant name="RFC822" value=""D, d M y H:i:s O""> + <docblock> + <var type="string"/> + </docblock> + </constant> + <constant name="RFC850" value=""l, d-M-y H:i:s T""> + <docblock> + <var type="string"/> + </docblock> + </constant> + <constant name="RFC1036" value=""D, d M y H:i:s O""> + <docblock> + <var type="string"/> + </docblock> + </constant> + <constant name="RFC1123" value=""D, d M Y H:i:s O""> + <docblock> + <var type="string"/> + </docblock> + </constant> + <constant name="RFC2822" value=""D, d M Y H:i:s O""> + <docblock> + <var type="string"/> + </docblock> + </constant> + <constant name="RFC3339" value=""Y-m-d\TH:i:sP""> + <docblock> + <var type="string"/> + </docblock> + </constant> + <constant name="RFC3339_EXTENDED" value=""Y-m-d\TH:i:s.vP""> + <docblock> + <var type="string"/> + </docblock> + </constant> + <constant name="RSS" value=""D, d M Y H:i:s O""> + <docblock> + <var type="string"/> + </docblock> + </constant> + <constant name="W3C" value=""Y-m-d\TH:i:sP""> + <docblock> + <var type="string"/> + </docblock> + </constant> <method name="diff" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Returns the difference between two DateTime objects">Object oriented style</description> diff --git a/dependencies/php/interfaces/Ds_Collection.xml b/dependencies/php/interfaces/Ds_Collection.xml index ba7c3c2693d89d6ecdf7431f1858451f031eb4c7..d1c40151f388611c1546b9afac881540235a5edf 100644 --- a/dependencies/php/interfaces/Ds_Collection.xml +++ b/dependencies/php/interfaces/Ds_Collection.xml @@ -1,15 +1,15 @@ <?xml version="1.0" encoding="UTF-8" ?> -<interface xmlns="http://xml.phpdox.net/src" full="Ds\Collection" namespace="" name="Ds\Collection"> +<interface xmlns="http://xml.phpdox.net/src" full="Ds\Collection" namespace="Ds" name="Collection"> <implements name="Traversable" full="Traversable"/> <method name="clear" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Removes all values."/> + <description compact="Removes all values"/> <return type="void"/> </docblock> </method> <method name="copy" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns a shallow copy of the collection."/> + <description compact="Returns a shallow copy of the collection"/> <return type="Ds\Collection"/> </docblock> </method> @@ -21,7 +21,7 @@ </method> <method name="toArray" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Converts the collection to an array. ">Converts the collection to an array.</description> + <description compact=" Converts the collection to an array ">Converts the collection to an array.</description> <return type="array"/> </docblock> </method> diff --git a/dependencies/php/interfaces/Ds_Hashable.xml b/dependencies/php/interfaces/Ds_Hashable.xml index 294b8c6c859a7262b68243d60352bfb717e61220..da04abc6b9875d7022c81e5c46a3aefb0dbf2562 100644 --- a/dependencies/php/interfaces/Ds_Hashable.xml +++ b/dependencies/php/interfaces/Ds_Hashable.xml @@ -1,15 +1,15 @@ <?xml version="1.0" encoding="UTF-8" ?> -<interface xmlns="http://xml.phpdox.net/src" full="Ds\Hashable" namespace="" name="Ds\Hashable"> +<interface xmlns="http://xml.phpdox.net/src" full="Ds\Hashable" namespace="Ds" name="Hashable"> <method name="equals" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Determines whether an object is equal to the current instance.">Determines whether another object is equal to the current instance.</description> + <description compact="Determines whether an object is equal to the current instance">Determines whether another object is equal to the current instance.</description> <return type="bool"/> </docblock> <parameter name="obj" optional="false" byreference="false" type="object" class="object"/> </method> <method name="hash" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns a scalar value to be used as a hash value.">Returns a scalar value to be used as the hash value of the objects.</description> + <description compact="Returns a scalar value to be used as a hash value">Returns a scalar value to be used as the hash value of the objects.</description> <return type="mixed"/> </docblock> </method> diff --git a/dependencies/php/interfaces/Ds_Sequence.xml b/dependencies/php/interfaces/Ds_Sequence.xml index 5b56b5a78133654567599e20e7baaeaa5968225d..2d12723d9ed42a507c7e6e2c67e02a428469ee81 100644 --- a/dependencies/php/interfaces/Ds_Sequence.xml +++ b/dependencies/php/interfaces/Ds_Sequence.xml @@ -1,63 +1,63 @@ <?xml version="1.0" encoding="UTF-8" ?> -<interface xmlns="http://xml.phpdox.net/src" full="Ds\Sequence" namespace="" name="Ds\Sequence"> +<interface xmlns="http://xml.phpdox.net/src" full="Ds\Sequence" namespace="Ds" name="Sequence"> <implements name="Ds\Collection" full="Ds\Collection"/> <method name="allocate" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Allocates enough memory for a required capacity."/> + <description compact="Allocates enough memory for a required capacity"/> <return type="void"/> </docblock> <parameter name="capacity" optional="false" byreference="false" type="int"/> </method> <method name="apply" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Updates all values by applying a callback function to each value."/> + <description compact="Updates all values by applying a callback function to each value"/> <return type="void"/> </docblock> <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> </method> <method name="capacity" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the current capacity."/> + <description compact="Returns the current capacity"/> <return type="int"/> </docblock> </method> <method name="contains" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Determines if the sequence contains given values."/> + <description compact="Determines if the sequence contains given values"/> <return type="bool"/> </docblock> <parameter name="...values" optional="true" byreference="false" type="object" class="mixed"/> </method> <method name="filter" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Creates a new sequence using a callable to determine which values to include. "/> + <description compact=" Creates a new sequence using a callable to determine which values to include "/> <return type="Ds\Sequence"/> </docblock> <parameter name="callback" optional="true" byreference="false" type="object" class="callable"/> </method> <method name="find" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Attempts to find a value's index. "/> + <description compact=" Attempts to find a value's index "/> <return type="mixed"/> </docblock> <parameter name="value" optional="false" byreference="false" type="object" class="mixed"/> </method> <method name="first" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the first value in the sequence."/> + <description compact="Returns the first value in the sequence"/> <return type="mixed"/> </docblock> </method> <method name="get" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the value at a given index."/> + <description compact="Returns the value at a given index"/> <return type="mixed"/> </docblock> <parameter name="index" optional="false" byreference="false" type="int"/> </method> <method name="insert" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Inserts values at a given index."/> + <description compact="Inserts values at a given index"/> <return type="void"/> </docblock> <parameter name="index" optional="false" byreference="false" type="int"/> @@ -65,47 +65,47 @@ </method> <method name="join" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Joins all values together as a string."/> + <description compact="Joins all values together as a string"/> <return type="string"/> </docblock> <parameter name="glue" optional="true" byreference="false" type="string"/> </method> <method name="last" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the last value."/> + <description compact="Returns the last value"/> <return type="mixed"/> </docblock> </method> <method name="map" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the result of applying a callback to each value."/> + <description compact="Returns the result of applying a callback to each value"/> <return type="Ds\Sequence"/> </docblock> <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> </method> <method name="merge" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the result of adding all given values to the sequence."/> + <description compact="Returns the result of adding all given values to the sequence"/> <return type="Ds\Sequence"/> </docblock> <parameter name="values" optional="false" byreference="false" type="object" class="mixed"/> </method> <method name="pop" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Removes and returns the last value."/> + <description compact="Removes and returns the last value"/> <return type="mixed"/> </docblock> </method> <method name="push" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Adds values to the end of the sequence."/> + <description compact="Adds values to the end of the sequence"/> <return type="void"/> </docblock> <parameter name="...values" optional="true" byreference="false" type="object" class="mixed"/> </method> <method name="reduce" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Reduces the sequence to a single value using a callback function."/> + <description compact="Reduces the sequence to a single value using a callback function"/> <return type="mixed"/> </docblock> <parameter name="callback" optional="false" byreference="false" type="object" class="callable"/> @@ -113,33 +113,33 @@ </method> <method name="remove" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Removes and returns a value by index."/> + <description compact="Removes and returns a value by index"/> <return type="mixed"/> </docblock> <parameter name="index" optional="false" byreference="false" type="int"/> </method> <method name="reverse" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Reverses the sequence in-place. "/> + <description compact=" Reverses the sequence in-place "/> <return type="void"/> </docblock> </method> <method name="reversed" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns a reversed copy."/> + <description compact="Returns a reversed copy"/> <return type="Ds\Sequence"/> </docblock> </method> <method name="rotate" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Rotates the sequence by a given number of rotations."/> + <description compact="Rotates the sequence by a given number of rotations"/> <return type="void"/> </docblock> <parameter name="rotations" optional="false" byreference="false" type="int"/> </method> <method name="set" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Updates a value at a given index."/> + <description compact="Updates a value at a given index"/> <return type="void"/> </docblock> <parameter name="index" optional="false" byreference="false" type="int"/> @@ -147,13 +147,13 @@ </method> <method name="shift" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Removes and returns the first value."/> + <description compact="Removes and returns the first value"/> <return type="mixed"/> </docblock> </method> <method name="slice" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Returns a sub-sequence of a given range. "/> + <description compact=" Returns a sub-sequence of a given range "/> <return type="Ds\Sequence"/> </docblock> <parameter name="index" optional="false" byreference="false" type="int"/> @@ -161,27 +161,27 @@ </method> <method name="sort" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact=" Sorts the sequence in-place. "/> + <description compact=" Sorts the sequence in-place "/> <return type="void"/> </docblock> <parameter name="comparator" optional="true" byreference="false" type="object" class="callable"/> </method> <method name="sorted" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns a sorted copy."/> + <description compact="Returns a sorted copy"/> <return type="Ds\Sequence"/> </docblock> <parameter name="comparator" optional="true" byreference="false" type="object" class="callable"/> </method> <method name="sum" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the sum of all values in the sequence.">Returns the sum of all values in the sequence.</description> + <description compact="Returns the sum of all values in the sequence">Returns the sum of all values in the sequence.</description> <return type="number"/> </docblock> </method> <method name="unshift" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Adds values to the front of the sequence."/> + <description compact="Adds values to the front of the sequence"/> <return type="void"/> </docblock> <parameter name="values" optional="true" byreference="false" type="object" class="mixed"/> diff --git a/dependencies/php/interfaces/Iterator.xml b/dependencies/php/interfaces/Iterator.xml index 1d4933355b34b93f12186b552a0091ac255e28d7..92d2157741c8ba45fe3db5eb89627d1ab5a52f16 100644 --- a/dependencies/php/interfaces/Iterator.xml +++ b/dependencies/php/interfaces/Iterator.xml @@ -28,7 +28,7 @@ <method name="valid" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Checks if current position is valid"/> - <return type="boolean"/> + <return type="bool"/> </docblock> </method> </interface> \ No newline at end of file diff --git a/dependencies/php/interfaces/MongoCursorInterface.xml b/dependencies/php/interfaces/MongoCursorInterface.xml index a84e8e9ea1ed9f19a68e9852038f164de014bdd3..1b59432161dba53a1a8b6016351f3f81859cc373 100644 --- a/dependencies/php/interfaces/MongoCursorInterface.xml +++ b/dependencies/php/interfaces/MongoCursorInterface.xml @@ -3,7 +3,7 @@ <extends name="Iterator" full="Iterator"/> <method name="batchSize" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Limits the number of elements returned in one batch."/> + <description compact="Limits the number of elements returned in one batch"/> <return type="MongoCursorInterface"/> </docblock> <parameter name="batchSize" optional="false" byreference="false" type="int"/> @@ -68,7 +68,7 @@ <method name="valid" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="boolean"/> + <return type="bool"/> </docblock> </method> </interface> \ No newline at end of file diff --git a/dependencies/php/interfaces/MongoDB_BSON_BinaryInterface.xml b/dependencies/php/interfaces/MongoDB_BSON_BinaryInterface.xml new file mode 100644 index 0000000000000000000000000000000000000000..8cd70f526de09257a4b08837353bb1a4033de64f --- /dev/null +++ b/dependencies/php/interfaces/MongoDB_BSON_BinaryInterface.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<interface xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\BinaryInterface" namespace="MongoDB\BSON" name="BinaryInterface"> + <method name="getData" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Returns the BinaryInterface's data"/> + <return type="string"/> + </docblock> + </method> + <method name="getType" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Returns the BinaryInterface's type"/> + <return type="int"/> + </docblock> + </method> + <method name="__toString" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Returns the BinaryInterface's data"/> + <return type="string"/> + </docblock> + </method> +</interface> \ No newline at end of file diff --git a/dependencies/php/interfaces/MongoDB_BSON_Decimal128Interface.xml b/dependencies/php/interfaces/MongoDB_BSON_Decimal128Interface.xml new file mode 100644 index 0000000000000000000000000000000000000000..116ac20833796e235b96e9e94c6ad1d5577323e4 --- /dev/null +++ b/dependencies/php/interfaces/MongoDB_BSON_Decimal128Interface.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<interface xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\Decimal128Interface" namespace="MongoDB\BSON" name="Decimal128Interface"> + <method name="__toString" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Returns the string representation of this Decimal128Interface"/> + <return type="string"/> + </docblock> + </method> +</interface> \ No newline at end of file diff --git a/dependencies/php/interfaces/MongoDB_BSON_JavascriptInterface.xml b/dependencies/php/interfaces/MongoDB_BSON_JavascriptInterface.xml new file mode 100644 index 0000000000000000000000000000000000000000..0bf0bb22df17830f636fd3136495dde43f59f9f5 --- /dev/null +++ b/dependencies/php/interfaces/MongoDB_BSON_JavascriptInterface.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<interface xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\JavascriptInterface" namespace="MongoDB\BSON" name="JavascriptInterface"> + <method name="getCode" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Returns the JavascriptInterface's code"/> + <return type="string"/> + </docblock> + </method> + <method name="getScope" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Returns the JavascriptInterface's scope document"/> + <return type="object|null"/> + </docblock> + </method> + <method name="__toString" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Returns the JavascriptInterface's code"/> + <return type="string"/> + </docblock> + </method> +</interface> \ No newline at end of file diff --git a/dependencies/php/interfaces/MongoDB_BSON_MaxKeyInterface.xml b/dependencies/php/interfaces/MongoDB_BSON_MaxKeyInterface.xml new file mode 100644 index 0000000000000000000000000000000000000000..083247b807b914dbab13a2cf302bcfbe21082298 --- /dev/null +++ b/dependencies/php/interfaces/MongoDB_BSON_MaxKeyInterface.xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<interface xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\MaxKeyInterface" namespace="MongoDB\BSON" name="MaxKeyInterface"/> \ No newline at end of file diff --git a/dependencies/php/interfaces/MongoDB_BSON_MinKeyInterface.xml b/dependencies/php/interfaces/MongoDB_BSON_MinKeyInterface.xml new file mode 100644 index 0000000000000000000000000000000000000000..81e37ce8d6ec97350e10753d5a9f726912ba5a7a --- /dev/null +++ b/dependencies/php/interfaces/MongoDB_BSON_MinKeyInterface.xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<interface xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\MinKeyInterface" namespace="MongoDB\BSON" name="MinKeyInterface"/> \ No newline at end of file diff --git a/dependencies/php/interfaces/MongoDB_BSON_ObjectIdInterface.xml b/dependencies/php/interfaces/MongoDB_BSON_ObjectIdInterface.xml new file mode 100644 index 0000000000000000000000000000000000000000..551c91c34519273c51609f2f7a17395f25f0022e --- /dev/null +++ b/dependencies/php/interfaces/MongoDB_BSON_ObjectIdInterface.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<interface xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\ObjectIdInterface" namespace="MongoDB\BSON" name="ObjectIdInterface"> + <method name="getTimestamp" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Returns the timestamp component of this ObjectIdInterface"/> + <return type="int"/> + </docblock> + </method> + <method name="__toString" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Returns the hexidecimal representation of this ObjectIdInterface"/> + <return type="string"/> + </docblock> + </method> +</interface> \ No newline at end of file diff --git a/dependencies/php/classes/MongoDB_BSON_Persistable.xml b/dependencies/php/interfaces/MongoDB_BSON_Persistable.xml similarity index 82% rename from dependencies/php/classes/MongoDB_BSON_Persistable.xml rename to dependencies/php/interfaces/MongoDB_BSON_Persistable.xml index ec9ccaee5d4c048072dae273a5d592e3b4d01d28..8bc95eedfa0e3dafbef5275a543f74e5eca2d5d6 100644 --- a/dependencies/php/classes/MongoDB_BSON_Persistable.xml +++ b/dependencies/php/interfaces/MongoDB_BSON_Persistable.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\Persistable" namespace="" name="MongoDB\BSON\Persistable"> +<interface xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\Persistable" namespace="MongoDB\BSON" name="Persistable"> <implements name="MongoDB\BSON\Unserializable" full="MongoDB\BSON\Unserializable"/> <method name="bsonSerialize" abstract="false" static="false" visibility="public" final="false"> <docblock> @@ -14,4 +14,4 @@ </docblock> <parameter name="data" optional="false" byreference="false" type="object" class="array"/> </method> -</class> \ No newline at end of file +</interface> \ No newline at end of file diff --git a/dependencies/php/interfaces/MongoDB_BSON_RegexInterface.xml b/dependencies/php/interfaces/MongoDB_BSON_RegexInterface.xml new file mode 100644 index 0000000000000000000000000000000000000000..535d935533e109841d219cc7fe11a380871c2d8c --- /dev/null +++ b/dependencies/php/interfaces/MongoDB_BSON_RegexInterface.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<interface xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\RegexInterface" namespace="MongoDB\BSON" name="RegexInterface"> + <method name="getFlags" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Returns the RegexInterface's flags"/> + <return type="string"/> + </docblock> + </method> + <method name="getPattern" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Returns the RegexInterface's pattern"/> + <return type="string"/> + </docblock> + </method> + <method name="__toString" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Returns the string representation of this RegexInterface"/> + <return type="string"/> + </docblock> + </method> +</interface> \ No newline at end of file diff --git a/dependencies/php/interfaces/MongoDB_BSON_Serializable.xml b/dependencies/php/interfaces/MongoDB_BSON_Serializable.xml index 217357a3934720fb8c7d5d2129d124da68b79854..fe52f60d5029463dd4b619db2b80c0c7e05b2d6b 100644 --- a/dependencies/php/interfaces/MongoDB_BSON_Serializable.xml +++ b/dependencies/php/interfaces/MongoDB_BSON_Serializable.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<interface xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\Serializable" namespace="" name="MongoDB\BSON\Serializable"> +<interface xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\Serializable" namespace="MongoDB\BSON" name="Serializable"> <implements name="MongoDB\BSON\Type" full="MongoDB\BSON\Type"/> <method name="bsonSerialize" abstract="false" static="false" visibility="public" final="false"> <docblock> diff --git a/dependencies/php/interfaces/MongoDB_BSON_TimestampInterface.xml b/dependencies/php/interfaces/MongoDB_BSON_TimestampInterface.xml new file mode 100644 index 0000000000000000000000000000000000000000..5b9725052c3e8a4b8ef7cfbe448f73a8f50041f5 --- /dev/null +++ b/dependencies/php/interfaces/MongoDB_BSON_TimestampInterface.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<interface xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\TimestampInterface" namespace="MongoDB\BSON" name="TimestampInterface"> + <method name="getIncrement" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Returns the increment component of this TimestampInterface"/> + <return type="int"/> + </docblock> + </method> + <method name="getTimestamp" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Returns the timestamp component of this TimestampInterface"/> + <return type="int"/> + </docblock> + </method> + <method name="__toString" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Returns the string representation of this TimestampInterface"/> + <return type="string"/> + </docblock> + </method> +</interface> \ No newline at end of file diff --git a/dependencies/php/interfaces/MongoDB_BSON_Type.xml b/dependencies/php/interfaces/MongoDB_BSON_Type.xml index 9efdcb5d5039fd741e274141f32bdbd87fcbb189..15439b07793f95d76307b7df7d8ecd5a541daa53 100644 --- a/dependencies/php/interfaces/MongoDB_BSON_Type.xml +++ b/dependencies/php/interfaces/MongoDB_BSON_Type.xml @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8" ?> -<interface xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\Type" namespace="" name="MongoDB\BSON\Type"/> \ No newline at end of file +<interface xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\Type" namespace="MongoDB\BSON" name="Type"/> \ No newline at end of file diff --git a/dependencies/php/interfaces/MongoDB_BSON_UTCDateTimeInterface.xml b/dependencies/php/interfaces/MongoDB_BSON_UTCDateTimeInterface.xml new file mode 100644 index 0000000000000000000000000000000000000000..b23cab428574abf7881062d927485190a645c749 --- /dev/null +++ b/dependencies/php/interfaces/MongoDB_BSON_UTCDateTimeInterface.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<interface xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\UTCDateTimeInterface" namespace="MongoDB\BSON" name="UTCDateTimeInterface"> + <method name="toDateTime" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Returns the DateTime representation of this UTCDateTimeInterface"/> + <return type="DateTime"/> + </docblock> + </method> + <method name="__toString" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Returns the string representation of this UTCDateTimeInterface"/> + <return type="string"/> + </docblock> + </method> +</interface> \ No newline at end of file diff --git a/dependencies/php/interfaces/MongoDB_BSON_Unserializable.xml b/dependencies/php/interfaces/MongoDB_BSON_Unserializable.xml index 5b26761f835baf430ea8f2f0309aa90dc688a85e..342dd283dd1e449503677fba469bf14a29c04ebd 100644 --- a/dependencies/php/interfaces/MongoDB_BSON_Unserializable.xml +++ b/dependencies/php/interfaces/MongoDB_BSON_Unserializable.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<interface xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\Unserializable" namespace="" name="MongoDB\BSON\Unserializable"> +<interface xmlns="http://xml.phpdox.net/src" full="MongoDB\BSON\Unserializable" namespace="MongoDB\BSON" name="Unserializable"> <method name="bsonUnserialize" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Constructs the object from a BSON array or document">Called during unserialization of the object from BSON. The properties of the BSON array or document will be passed to the method as an array.</description> diff --git a/dependencies/php/interfaces/MongoDB_Driver_Exception_Exception.xml b/dependencies/php/interfaces/MongoDB_Driver_Exception_Exception.xml index 7ecd782b9ba5aa89121942213087def982fbf032..13610d56e8ea3bc17d2a7976042bebf575aeff8b 100644 --- a/dependencies/php/interfaces/MongoDB_Driver_Exception_Exception.xml +++ b/dependencies/php/interfaces/MongoDB_Driver_Exception_Exception.xml @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8" ?> -<interface xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Exception\Exception" namespace="" name="MongoDB\Driver\Exception\Exception"/> \ No newline at end of file +<interface xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Exception\Exception" namespace="MongoDB\Driver\Exception" name="Exception"/> \ No newline at end of file diff --git a/dependencies/php/interfaces/MongoDB_Driver_Monitoring_CommandSubscriber.xml b/dependencies/php/interfaces/MongoDB_Driver_Monitoring_CommandSubscriber.xml new file mode 100644 index 0000000000000000000000000000000000000000..1efc5177f9ec0415bc30048c9659b237a56dacca --- /dev/null +++ b/dependencies/php/interfaces/MongoDB_Driver_Monitoring_CommandSubscriber.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<interface xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Monitoring\CommandSubscriber" namespace="MongoDB\Driver\Monitoring" name="CommandSubscriber"> + <implements name="MongoDB\Driver\Monitoring\Subscriber" full="MongoDB\Driver\Monitoring\Subscriber"/> + <method name="commandFailed" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Notification method for a failed command"/> + <return type="void"/> + </docblock> + <parameter name="event" optional="false" byreference="false" type="object" class="MongoDB\Driver\Monitoring\CommandFailedEvent"/> + </method> + <method name="commandStarted" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Notification method for a started command"/> + <return type="void"/> + </docblock> + <parameter name="event" optional="false" byreference="false" type="object" class="MongoDB\Driver\Monitoring\CommandStartedEvent"/> + </method> + <method name="commandSucceeded" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Notification method for a successful command"/> + <return type="void"/> + </docblock> + <parameter name="event" optional="false" byreference="false" type="object" class="MongoDB\Driver\Monitoring\CommandSucceededEvent"/> + </method> +</interface> \ No newline at end of file diff --git a/dependencies/php/interfaces/MongoDB_Driver_Monitoring_Subscriber.xml b/dependencies/php/interfaces/MongoDB_Driver_Monitoring_Subscriber.xml new file mode 100644 index 0000000000000000000000000000000000000000..167ea3a15f737cda5bdbb16a0a9349bfd3384a4c --- /dev/null +++ b/dependencies/php/interfaces/MongoDB_Driver_Monitoring_Subscriber.xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<interface xmlns="http://xml.phpdox.net/src" full="MongoDB\Driver\Monitoring\Subscriber" namespace="MongoDB\Driver\Monitoring" name="Subscriber"/> \ No newline at end of file diff --git a/dependencies/php/interfaces/OuterIterator.xml b/dependencies/php/interfaces/OuterIterator.xml index 7f2a1bc1493f64b335fe10c21bba875f099e8c4c..8addaa545199c209e16262f61a4ccc099936f1be 100644 --- a/dependencies/php/interfaces/OuterIterator.xml +++ b/dependencies/php/interfaces/OuterIterator.xml @@ -3,7 +3,7 @@ <extends name="Iterator" full="Iterator"/> <method name="getInnerIterator" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns the inner iterator for the current entry."/> + <description compact="Returns the inner iterator for the current entry"/> <return type="Iterator"/> </docblock> </method> @@ -34,7 +34,7 @@ <method name="valid" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="boolean"/> + <return type="bool"/> </docblock> </method> </interface> \ No newline at end of file diff --git a/dependencies/php/interfaces/RecursiveIterator.xml b/dependencies/php/interfaces/RecursiveIterator.xml index ce81233108c4c41cbd11ad5f28a02c518eb4ae3c..c9f98f920013f33704418228bedaf27b06ba9e47 100644 --- a/dependencies/php/interfaces/RecursiveIterator.xml +++ b/dependencies/php/interfaces/RecursiveIterator.xml @@ -3,7 +3,7 @@ <extends name="Iterator" full="Iterator"/> <method name="getChildren" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="Returns an iterator for the current entry."/> + <description compact="Returns an iterator for the current entry"/> <return type="RecursiveIterator"/> </docblock> </method> @@ -40,7 +40,7 @@ <method name="valid" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="boolean"/> + <return type="bool"/> </docblock> </method> </interface> \ No newline at end of file diff --git a/dependencies/php/interfaces/SeekableIterator.xml b/dependencies/php/interfaces/SeekableIterator.xml index 85783c88f32721c653147596f47ff06607486109..2bc1a57869520928ffb05a3a35173d3b05ac0676 100644 --- a/dependencies/php/interfaces/SeekableIterator.xml +++ b/dependencies/php/interfaces/SeekableIterator.xml @@ -35,7 +35,7 @@ <method name="valid" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact=""/> - <return type="boolean"/> + <return type="bool"/> </docblock> </method> </interface> \ No newline at end of file diff --git a/dependencies/php/interfaces/SessionHandlerInterface.xml b/dependencies/php/interfaces/SessionHandlerInterface.xml index 60e2874872cd67e8a33854dc1318ed671d8dd1ec..84e10cfeb15b4c515a0b97c32cf5b8191a56b641 100644 --- a/dependencies/php/interfaces/SessionHandlerInterface.xml +++ b/dependencies/php/interfaces/SessionHandlerInterface.xml @@ -16,7 +16,7 @@ <method name="gc" abstract="false" static="false" visibility="public" final="false"> <docblock> <description compact="Cleanup old sessions"/> - <return type="bool"/> + <return type="int"/> </docblock> <parameter name="maxlifetime" optional="false" byreference="false" type="int"/> </method> diff --git a/dependencies/php/interfaces/SessionIdInterface.xml b/dependencies/php/interfaces/SessionIdInterface.xml new file mode 100644 index 0000000000000000000000000000000000000000..822575e014f5060e88320d1a5b9d2a88e425b239 --- /dev/null +++ b/dependencies/php/interfaces/SessionIdInterface.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<interface xmlns="http://xml.phpdox.net/src" full="SessionIdInterface" namespace="" name="SessionIdInterface"> + <method name="create_sid" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Create session ID"/> + <return type="string"/> + </docblock> + </method> +</interface> \ No newline at end of file diff --git a/dependencies/php/interfaces/SessionUpdateTimestampHandlerInterface.xml b/dependencies/php/interfaces/SessionUpdateTimestampHandlerInterface.xml new file mode 100644 index 0000000000000000000000000000000000000000..66291ddd289f01c0075d268d40b04858a16a8a0c --- /dev/null +++ b/dependencies/php/interfaces/SessionUpdateTimestampHandlerInterface.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<interface xmlns="http://xml.phpdox.net/src" full="SessionUpdateTimestampHandlerInterface" namespace="" name="SessionUpdateTimestampHandlerInterface"> + <method name="updateTimestamp" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Update timestamp"/> + <return type="bool"/> + </docblock> + <parameter name="key" optional="false" byreference="false" type="string"/> + <parameter name="val" optional="false" byreference="false" type="string"/> + </method> + <method name="validateId" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Validate ID"/> + <return type="bool"/> + </docblock> + <parameter name="key" optional="false" byreference="false" type="string"/> + </method> +</interface> \ No newline at end of file diff --git a/dependencies/php/interfaces/Yaf_Route_Interface.xml b/dependencies/php/interfaces/Yaf_Route_Interface.xml index f52488bc3a7f21d3e5ee0f87fe14752a4cebcaf3..16f53aa0599c97356d270c9719058b56fdad0186 100644 --- a/dependencies/php/interfaces/Yaf_Route_Interface.xml +++ b/dependencies/php/interfaces/Yaf_Route_Interface.xml @@ -2,7 +2,7 @@ <interface xmlns="http://xml.phpdox.net/src" full="Yaf_Route_Interface" namespace="" name="Yaf_Route_Interface"> <method name="assemble" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="assemble a request">this method returns a url according to the argument info, and append query strings to the url according to the argument query.</description> + <description compact="Assemble a request">this method returns a url according to the argument info, and append query strings to the url according to the argument query.</description> <return type="string"/> </docblock> <parameter name="info" optional="false" byreference="false" type="object" class="array"/> @@ -10,7 +10,7 @@ </method> <method name="route" abstract="false" static="false" visibility="public" final="false"> <docblock> - <description compact="route a request">Yaf_Route_Interface::route is the only method that a custom route should implement. since of 2.3.0, there is another method should also be implemented, see Yaf_Route_Interface::assemble.</description> + <description compact="Route a request">Yaf_Route_Interface::route is the only method that a custom route should implement. since of 2.3.0, there is another method should also be implemented, see Yaf_Route_Interface::assemble.</description> <return type="bool"/> </docblock> <parameter name="request" optional="false" byreference="false" type="object" class="Yaf_Request_Abstract"/> diff --git a/dependencies/php/interfaces/mysql_xdevapi_BaseResult.xml b/dependencies/php/interfaces/mysql_xdevapi_BaseResult.xml new file mode 100644 index 0000000000000000000000000000000000000000..db909084513543020c289c79fd10e548ed44d4f2 --- /dev/null +++ b/dependencies/php/interfaces/mysql_xdevapi_BaseResult.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<interface xmlns="http://xml.phpdox.net/src" full="mysql_xdevapi\BaseResult" namespace="mysql_xdevapi" name="BaseResult"> + <method name="getWarnings" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="array"/> + </docblock> + </method> + <method name="getWarningsCount" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="integer"/> + </docblock> + </method> +</interface> \ No newline at end of file diff --git a/dependencies/php/interfaces/mysql_xdevapi_CrudOperationBindable.xml b/dependencies/php/interfaces/mysql_xdevapi_CrudOperationBindable.xml new file mode 100644 index 0000000000000000000000000000000000000000..b5f7d251376a167ab08259bb80ca84abc9eb8873 --- /dev/null +++ b/dependencies/php/interfaces/mysql_xdevapi_CrudOperationBindable.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<interface xmlns="http://xml.phpdox.net/src" full="mysql_xdevapi\CrudOperationBindable" namespace="mysql_xdevapi" name="CrudOperationBindable"> + <method name="bind" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\CrudOperationBindable"/> + </docblock> + <parameter name="placeholder_values" optional="false" byreference="false" type="object" class="array"/> + </method> +</interface> \ No newline at end of file diff --git a/dependencies/php/interfaces/mysql_xdevapi_CrudOperationLimitable.xml b/dependencies/php/interfaces/mysql_xdevapi_CrudOperationLimitable.xml new file mode 100644 index 0000000000000000000000000000000000000000..f27a93a18b743fd6e23f697799f9fe98b880ff82 --- /dev/null +++ b/dependencies/php/interfaces/mysql_xdevapi_CrudOperationLimitable.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<interface xmlns="http://xml.phpdox.net/src" full="mysql_xdevapi\CrudOperationLimitable" namespace="mysql_xdevapi" name="CrudOperationLimitable"> + <method name="limit" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\CrudOperationLimitable"/> + </docblock> + <parameter name="rows" optional="false" byreference="false" type="object" class="integer"/> + </method> +</interface> \ No newline at end of file diff --git a/dependencies/php/interfaces/mysql_xdevapi_CrudOperationSkippable.xml b/dependencies/php/interfaces/mysql_xdevapi_CrudOperationSkippable.xml new file mode 100644 index 0000000000000000000000000000000000000000..ca010cf68ac77efc1d3b841adc4c27e0a371293c --- /dev/null +++ b/dependencies/php/interfaces/mysql_xdevapi_CrudOperationSkippable.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<interface xmlns="http://xml.phpdox.net/src" full="mysql_xdevapi\CrudOperationSkippable" namespace="mysql_xdevapi" name="CrudOperationSkippable"> + <method name="skip" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\CrudOperationSkippable"/> + </docblock> + <parameter name="skip" optional="false" byreference="false" type="object" class="integer"/> + </method> +</interface> \ No newline at end of file diff --git a/dependencies/php/interfaces/mysql_xdevapi_CrudOperationSortable.xml b/dependencies/php/interfaces/mysql_xdevapi_CrudOperationSortable.xml new file mode 100644 index 0000000000000000000000000000000000000000..873ec4da88862fa1c68f67ba4de71c1e68d24749 --- /dev/null +++ b/dependencies/php/interfaces/mysql_xdevapi_CrudOperationSortable.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<interface xmlns="http://xml.phpdox.net/src" full="mysql_xdevapi\CrudOperationSortable" namespace="mysql_xdevapi" name="CrudOperationSortable"> + <method name="sort" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\CrudOperationSortable"/> + </docblock> + <parameter name="sort_expr" optional="false" byreference="false" type="string"/> + </method> +</interface> \ No newline at end of file diff --git a/dependencies/php/interfaces/mysql_xdevapi_DatabaseObject.xml b/dependencies/php/interfaces/mysql_xdevapi_DatabaseObject.xml new file mode 100644 index 0000000000000000000000000000000000000000..c1e1efaf9504238e6255ad273571a80a37ad8e63 --- /dev/null +++ b/dependencies/php/interfaces/mysql_xdevapi_DatabaseObject.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<interface xmlns="http://xml.phpdox.net/src" full="mysql_xdevapi\DatabaseObject" namespace="mysql_xdevapi" name="DatabaseObject"> + <method name="existsInDatabase" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="bool"/> + </docblock> + </method> + <method name="getName" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="string"/> + </docblock> + </method> + <method name="getSession" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\Session"/> + </docblock> + </method> +</interface> \ No newline at end of file diff --git a/dependencies/php/interfaces/mysql_xdevapi_Executable.xml b/dependencies/php/interfaces/mysql_xdevapi_Executable.xml new file mode 100644 index 0000000000000000000000000000000000000000..02f41f1eeaa6b97538d45a8769293a2c6accde4b --- /dev/null +++ b/dependencies/php/interfaces/mysql_xdevapi_Executable.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<interface xmlns="http://xml.phpdox.net/src" full="mysql_xdevapi\Executable" namespace="mysql_xdevapi" name="Executable"> + <method name="execute" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\Result"/> + </docblock> + </method> +</interface> \ No newline at end of file diff --git a/dependencies/php/interfaces/mysql_xdevapi_SchemaObject.xml b/dependencies/php/interfaces/mysql_xdevapi_SchemaObject.xml new file mode 100644 index 0000000000000000000000000000000000000000..06a8a3079ebd2d2a9a447e668732c71d8bc8ecc5 --- /dev/null +++ b/dependencies/php/interfaces/mysql_xdevapi_SchemaObject.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<interface xmlns="http://xml.phpdox.net/src" full="mysql_xdevapi\SchemaObject" namespace="mysql_xdevapi" name="SchemaObject"> + <implements name="mysql_xdevapi\DatabaseObject" full="mysql_xdevapi\DatabaseObject"/> + <method name="getSchema" abstract="false" static="false" final="false"> + <docblock> + <description compact=""/> + <return type="mysql_xdevapi\Schema"/> + </docblock> + </method> +</interface> \ No newline at end of file diff --git a/dependencies/php/interfaces/pht_Runnable.xml b/dependencies/php/interfaces/pht_Runnable.xml new file mode 100644 index 0000000000000000000000000000000000000000..268cfd98e2810716b7182a5e99ff649f3458ba61 --- /dev/null +++ b/dependencies/php/interfaces/pht_Runnable.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<interface xmlns="http://xml.phpdox.net/src" full="pht\Runnable" namespace="pht" name="Runnable"> + <method name="run" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="The entry point of a threaded class"/> + <return type="void"/> + </docblock> + </method> +</interface> \ No newline at end of file diff --git a/dependencies/php/interfaces/pht_Threaded.xml b/dependencies/php/interfaces/pht_Threaded.xml new file mode 100644 index 0000000000000000000000000000000000000000..6a1f7d153abe3c96996abec2666b52f02fee81c5 --- /dev/null +++ b/dependencies/php/interfaces/pht_Threaded.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<interface xmlns="http://xml.phpdox.net/src" full="pht\Threaded" namespace="pht" name="Threaded"> + <method name="lock" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Acquires the mutex lock"/> + <return type="void"/> + </docblock> + </method> + <method name="unlock" abstract="false" static="false" visibility="public" final="false"> + <docblock> + <description compact="Releases the mutex lock"/> + <return type="void"/> + </docblock> + </method> +</interface> \ No newline at end of file diff --git a/phive.xml b/phive.xml index 9dfa2e010d8995f82e6b3f0c1d30a43f07305407..bc4588a0d99a7799cda76d9f845cd5f9cfc6f482 100644 --- a/phive.xml +++ b/phive.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <phive xmlns="https://phar.io/phive"> - <phar name="phploc" version="^3.0.1" installed="3.0.1" location="./tools/phploc"/> - <phar name="phpunit" version="^7.0" installed="7.5.1" location="./tools/phpunit" copy="false"/> - <phar name="phpab" version="^1.23.0" installed="1.24.1" location="./tools/phpab"/> + <phar name="phploc" version="^3.0.1" installed="3.0.1" location="./tools/phploc" copy="false"/> + <phar name="phpunit" version="^7.0" installed="7.5.3" location="./tools/phpunit" copy="false"/> + <phar name="phpab" version="^1.25.2" installed="1.25.2" location="./tools/phpab" copy="false"/> </phive> diff --git a/src/collector/project/Dependency.php b/src/collector/project/Dependency.php index 5a61c67b6746dc97ed9ba293c6fe0f8a0660a01f..3e39aa5853fc622dda5e1b4ce08f1889a1679e76 100644 --- a/src/collector/project/Dependency.php +++ b/src/collector/project/Dependency.php @@ -26,7 +26,7 @@ class Dependency { public function __construct(fDOMDocument $dom, Project $project, $publicOnlyMode) { $this->index = $dom; - $this->baseDir = \dirname(\urldecode($dom->documentURI)); + $this->baseDir = \dirname(\str_replace('file:/', '', \urldecode($dom->documentURI))); $this->index->registerNamespace('phpdox', 'http://xml.phpdox.net/src'); $this->project = $project; $this->publicOnlyMode = $publicOnlyMode; diff --git a/src/generator/project/TokenFileIterator.php b/src/generator/project/TokenFileIterator.php index 4d56552e489a9572d6fae702684658f10be9cbac..35a06c0f1c8466b3d789444968f03cb49809968b 100644 --- a/src/generator/project/TokenFileIterator.php +++ b/src/generator/project/TokenFileIterator.php @@ -20,7 +20,7 @@ class TokenFileIterator implements \Iterator { public function current(): TokenFile { $item = $this->nodeList->item($this->pos); - $path = \dirname(\urldecode($item->ownerDocument->documentURI)) . '/' . $item->getAttribute('xml'); + $path = \dirname(\str_replace('file:/', '', \urldecode($item->ownerDocument->documentURI))) . '/' . $item->getAttribute('xml'); return new TokenFile(new FileInfo($path)); } diff --git a/src/shared/ErrorHandler.php b/src/shared/ErrorHandler.php index 3909e57fb687a2f6c7146ab5737328ab44e93d04..5102cabda7b86d9e3ef449a46c30e10504d964cf 100644 --- a/src/shared/ErrorHandler.php +++ b/src/shared/ErrorHandler.php @@ -140,7 +140,7 @@ class ErrorHandler { private function getLastError(): array { $error = \error_get_last(); - if ($error && $error['type'] === \E_USER_NOTICE) { + if ($error === null || $error['type'] === \E_USER_NOTICE) { return []; } diff --git a/src/shared/FileInfo.php b/src/shared/FileInfo.php index 0d81d34565cd1d4550b561c5da42d4f73df1508a..f52ef6022a61ebc35b9b832bf3667e52657f9b8b 100644 --- a/src/shared/FileInfo.php +++ b/src/shared/FileInfo.php @@ -35,7 +35,7 @@ class FileInfo extends \SplFileInfo { $result = '/' . $result; } - return 'file://' . $result; + return 'file://' . urlencode($result); } public function getPath() { diff --git a/templates/html/static/css/SourceSansPro-Regular.ttf b/templates/html/static/css/SourceSansPro-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..278ad8aa0a09592a759e39f8fc06d0fa9d986fb0 Binary files /dev/null and b/templates/html/static/css/SourceSansPro-Regular.ttf differ diff --git a/templates/html/static/css/style.css b/templates/html/static/css/style.css index 67913a46fb0bd5525b1faa504fb06dd3605d0b9e..d051608252e7bf8a2dedef427aadc3caf5db8e93 100644 --- a/templates/html/static/css/style.css +++ b/templates/html/static/css/style.css @@ -1,4 +1,9 @@ -@import url(http://fonts.googleapis.com/css?family=Source+Sans+Pro); +@font-face { + font-family: 'Source Sans Pro'; + font-style: normal; + font-weight: 400; + src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'), url(SourceSansPro-Regular.ttf) format('truetype'); +} html { background-color: #888888; @@ -120,7 +125,7 @@ h3 { } #index h1 { - text-shadow: 0px -1px 0 #555555; + text-shadow: 0 -1px 0 #555555; } #index p { @@ -198,7 +203,6 @@ h3 { .wrapped { white-space: pre-wrap; white-space: -moz-pre-wrap; - white-space: -pre-wrap; white-space: -o-pre-wrap; word-wrap: break-word; } @@ -222,7 +226,7 @@ h3 { .box { padding:1em; - margin:1em 1em 2em 0em; + margin:1em 1em 2em 0; border: 1px solid #cccccc; font-size: 1em; color: #888888; @@ -259,7 +263,7 @@ ul.members li { padding:1em; background-color: #efefef; border-top: 2px solid rgba(255,147,30,1); - font-family: "Courier New", Courier, mono; + font-family: "Courier New", Courier, monospace; width:50em; } @@ -354,8 +358,8 @@ nav.box { nav.box ul { list-style: none outside none; - margin: 0px; - padding: 0px; + margin: 0; + padding: 0; } nav.box ul li {