phpcs fixes

This commit is contained in:
Dennis Eichhorn 2018-02-17 21:38:39 +01:00
parent a8afbc5cc8
commit 675d3fa808
67 changed files with 307 additions and 207 deletions

View File

@ -164,9 +164,11 @@ class MemCached implements CacheInterface
/** /**
* Closing cache. * Closing cache.
* *
* @return void
*
* @since 1.0.0 * @since 1.0.0
*/ */
public function close() public function close() /* : void */
{ {
if ($this->memc !== null) { if ($this->memc !== null) {
$this->memc->close(); $this->memc->close();

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\DataStorage\Database
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -19,7 +19,7 @@ use phpOMS\DataStorage\Database\Connection\ConnectionAbstract;
/** /**
* Database query builder. * Database query builder.
* *
* @package Framework * @package phpOMS\DataStorage\Database
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\DataStorage\Database\Connection
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -24,7 +24,7 @@ use phpOMS\DataStorage\Database\Schema\Grammar\Grammar as SchemaGrammar;
* Handles the database connection. * Handles the database connection.
* Implementing wrapper functions for multiple databases is planned (far away). * Implementing wrapper functions for multiple databases is planned (far away).
* *
* @package Framework * @package phpOMS\DataStorage\Database\Connection
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\DataStorage\Database\Connection
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -19,7 +19,7 @@ use phpOMS\DataStorage\Database\DatabaseType;
/** /**
* Database connection factory. * Database connection factory.
* *
* @package Framework * @package phpOMS\DataStorage\Database\Connection
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\DataStorage\Database\Connection
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -20,7 +20,7 @@ use phpOMS\DataStorage\Database\Schema\Grammar\Grammar as SchemaGrammar;
/** /**
* Database connection interface. * Database connection interface.
* *
* @package Framework * @package phpOMS\DataStorage\Database\Connection
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\DataStorage\Database\Connection
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -26,7 +26,7 @@ use phpOMS\DataStorage\Database\Exception\InvalidConnectionConfigException;
* Handles the database connection. * Handles the database connection.
* Implementing wrapper functions for multiple databases is planned (far away). * Implementing wrapper functions for multiple databases is planned (far away).
* *
* @package Framework * @package phpOMS\DataStorage\Database\Connection
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\DataStorage\Database\Connection
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -14,6 +14,17 @@ declare(strict_types=1);
namespace phpOMS\DataStorage\Database\Connection; namespace phpOMS\DataStorage\Database\Connection;
/**
* Database handler.
*
* Handles the database connection.
* Implementing wrapper functions for multiple databases is planned (far away).
*
* @package phpOMS\DataStorage\Database\Connection
* @license OMS License 1.0
* @link http://website.orange-management.de
* @since 1.0.0
*/
abstract class PostgresConnection extends \Exception abstract class PostgresConnection extends \Exception
{ {

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\DataStorage\Database\Connection
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -24,7 +24,7 @@ use phpOMS\DataStorage\Database\Query\Grammar\SqliteGrammar;
* Handles the database connection. * Handles the database connection.
* Implementing wrapper functions for multiple databases is planned (far away). * Implementing wrapper functions for multiple databases is planned (far away).
* *
* @package Framework * @package phpOMS\DataStorage\Database\Connection
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\DataStorage\Database\Connection
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -25,7 +25,7 @@ use phpOMS\DataStorage\Database\Schema\Grammar\MysqlGrammar as MysqlSchemaGramma
* Handles the database connection. * Handles the database connection.
* Implementing wrapper functions for multiple databases is planned (far away). * Implementing wrapper functions for multiple databases is planned (far away).
* *
* @package Framework * @package phpOMS\DataStorage\Database\Connection
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\DataStorage\Database
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -25,7 +25,7 @@ use phpOMS\DataStorage\Database\Exception\InvalidMapperException;
* *
* DB, Cache, Session * DB, Cache, Session
* *
* @package Framework * @package phpOMS\DataStorage\Database
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\DataStorage\Database
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -19,7 +19,7 @@ use phpOMS\DataStorage\Database\Schema\Exception\TableException;
/** /**
* Database exception factory. * Database exception factory.
* *
* @package Framework * @package phpOMS\DataStorage\Database
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\DataStorage\Database
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -20,7 +20,7 @@ use phpOMS\DataStorage\Database\Connection\ConnectionFactory;
/** /**
* Database pool handler. * Database pool handler.
* *
* @package Framework * @package phpOMS\DataStorage\Database
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\DataStorage\Database\Exception
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -17,7 +17,7 @@ namespace phpOMS\DataStorage\Database\Exception;
/** /**
* Permission exception class. * Permission exception class.
* *
* @package Framework * @package phpOMS\DataStorage\Database\Exception
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\DataStorage\Database\Exception
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -17,7 +17,7 @@ namespace phpOMS\DataStorage\Database\Exception;
/** /**
* Permission exception class. * Permission exception class.
* *
* @package Framework * @package phpOMS\DataStorage\Database\Exception
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\DataStorage\Database\Exception
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -17,7 +17,7 @@ namespace phpOMS\DataStorage\Database\Exception;
/** /**
* Permission exception class. * Permission exception class.
* *
* @package Framework * @package phpOMS\DataStorage\Database\Exception
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\DataStorage\Database
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -17,7 +17,7 @@ namespace phpOMS\DataStorage\Database;
/** /**
* Grammar. * Grammar.
* *
* @package Framework * @package phpOMS\DataStorage\Database
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -1219,6 +1219,17 @@ class Builder extends BuilderAbstract
throw new \Exception(); throw new \Exception();
} }
/**
* Get column name
*
* @param mixed $column Column name
*
* @return string
*
* @throws \Exception
*
* @since 1.0.0
*/
public static function getPublicColumnName($column) : string public static function getPublicColumnName($column) : string
{ {
if (is_string($column)) { if (is_string($column)) {

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\DataStorage\Database\Query\Grammar
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -24,7 +24,7 @@ use phpOMS\DataStorage\Database\Query\Where;
/** /**
* Database query grammar. * Database query grammar.
* *
* @package Framework * @package phpOMS\DataStorage\Database\Query\Grammar
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\DataStorage\Database\Query\Grammar
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -14,6 +14,14 @@ declare(strict_types=1);
namespace phpOMS\DataStorage\Database\Query\Grammar; namespace phpOMS\DataStorage\Database\Query\Grammar;
/**
* Grammar interface.
*
* @package phpOMS\DataStorage\Database\Query\Grammar
* @license OMS License 1.0
* @link http://website.orange-management.de
* @since 1.0.0
*/
interface GrammarInterface interface GrammarInterface
{ {
} }

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\DataStorage\Database\Query\Grammar
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -19,7 +19,7 @@ use phpOMS\DataStorage\Database\Query\Builder;
/** /**
* Grammar class. * Grammar class.
* *
* @package Framework * @package phpOMS\DataStorage\Database\Query\Grammar
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\DataStorage\Database\Query\Grammar
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -19,7 +19,7 @@ use phpOMS\DataStorage\Database\Query\Builder;
/** /**
* Grammar class. * Grammar class.
* *
* @package Framework * @package phpOMS\DataStorage\Database\Query\Grammar
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\DataStorage\Database\Query\Grammar
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -19,7 +19,7 @@ use phpOMS\DataStorage\Database\Query\Builder;
/** /**
* Grammar class. * Grammar class.
* *
* @package Framework * @package phpOMS\DataStorage\Database\Query\Grammar
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\DataStorage\Database\Query\Grammar
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -19,7 +19,7 @@ use phpOMS\DataStorage\Database\Query\Builder;
/** /**
* Grammar class. * Grammar class.
* *
* @package Framework * @package phpOMS\DataStorage\Database\Query\Grammar
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\DataStorage\Database\Query\Grammar
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -19,7 +19,7 @@ use phpOMS\DataStorage\Database\Query\Builder;
/** /**
* Grammar class. * Grammar class.
* *
* @package Framework * @package phpOMS\DataStorage\Database\Query\Grammar
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\DataStorage\Database
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -21,7 +21,7 @@ use phpOMS\Stdlib\Base\Enum;
* *
* Database types that are supported by the application * Database types that are supported by the application
* *
* @package Framework * @package phpOMS\DataStorage\Database
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\Math\Matrix
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -19,7 +19,7 @@ use phpOMS\Math\Matrix\Exception\InvalidDimensionException;
/** /**
* Matrix class * Matrix class
* *
* @package Framework * @package phpOMS\Math\Matrix
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0
@ -83,6 +83,8 @@ class Matrix implements \ArrayAccess, \Iterator
* @param int $n Column * @param int $n Column
* @param int $value Value * @param int $value Value
* *
* @return void
*
* @throws InvalidDimensionException * @throws InvalidDimensionException
* *
* @since 1.0.0 * @since 1.0.0
@ -551,6 +553,13 @@ class Matrix implements \ArrayAccess, \Iterator
return $newMatrix; return $newMatrix;
} }
/**
* Diagonalize matrix
*
* @return Matrix
*
* @since 1.0.0
*/
public function diagonalize() : Matrix public function diagonalize() : Matrix
{ {
$newMatrix = new Matrix($this->m, $this->n); $newMatrix = new Matrix($this->m, $this->n);
@ -559,6 +568,15 @@ class Matrix implements \ArrayAccess, \Iterator
return $newMatrix; return $newMatrix;
} }
/**
* Solve matrix
*
* @param Matix $B Matrix/Vector b
*
* @return Matrix
*
* @since 1.0.0
*/
public function solve(Matrix $B) : Matrix public function solve(Matrix $B) : Matrix
{ {
$M = $this->m === $this->n ? new LUDecomposition($this) : new QRDecomposition($this); $M = $this->m === $this->n ? new LUDecomposition($this) : new QRDecomposition($this);
@ -566,6 +584,15 @@ class Matrix implements \ArrayAccess, \Iterator
return $M->solve($B); return $M->solve($B);
} }
/**
* Perform gauss elimination on Matrix
*
* @param mixed $b Vector b
*
* @return Matrix
*
* @since 1.0.0
*/
private function gaussElimination($b) : Matrix private function gaussElimination($b) : Matrix
{ {
$mDim = count($b); $mDim = count($b);

View File

@ -47,9 +47,11 @@ interface EdgeInterface
* *
* @param mixed $weight Weight of edge * @param mixed $weight Weight of edge
* *
* @return void
*
* @since 1.0.0 * @since 1.0.0
*/ */
public function setWeight($weight); public function setWeight($weight); /* : void */
/** /**
* Get vertices. * Get vertices.
@ -66,7 +68,9 @@ interface EdgeInterface
* @param VerticeInterface $a Vertice a * @param VerticeInterface $a Vertice a
* @param VerticeInterface $b Vertice b * @param VerticeInterface $b Vertice b
* *
* @return void
*
* @since 1.0.0 * @since 1.0.0
*/ */
public function setVertices(VerticeInterface $a, VerticeInterface $b); public function setVertices(VerticeInterface $a, VerticeInterface $b); /* : void */
} }

View File

@ -164,7 +164,7 @@ abstract class RegressionAbstract
* *
* @since 1.0.0 * @since 1.0.0
*/ */
public static function getSlope(float $b1, float $y, float $x) : float public static function getSlope(float $b1, float $x, float $y) : float
{ {
return 0.0; return 0.0;
} }
@ -180,7 +180,7 @@ abstract class RegressionAbstract
* *
* @since 1.0.0 * @since 1.0.0
*/ */
public static function getElasticity(float $b1, float $y, float $x): float public static function getElasticity(float $b1, float $x, float $y): float
{ {
return 0.0; return 0.0;
} }

View File

@ -27,8 +27,8 @@ class BernoulliDistribution
/** /**
* Get probability mass function. * Get probability mass function.
* *
* @param float $p * @param float $p Value p
* @param int $k * @param int $k Value k
* *
* @return float * @return float
* *
@ -50,7 +50,7 @@ class BernoulliDistribution
/** /**
* Get mode. * Get mode.
* *
* @param float $p * @param float $p Value p
* *
* @return int * @return int
* *
@ -70,7 +70,7 @@ class BernoulliDistribution
/** /**
* Get expected value. * Get expected value.
* *
* @param float $p * @param float $p Value p
* *
* @return float * @return float
* *
@ -84,7 +84,7 @@ class BernoulliDistribution
/** /**
* Get expected value. * Get expected value.
* *
* @param float $p * @param float $p Value p
* *
* @return float * @return float
* *
@ -104,7 +104,7 @@ class BernoulliDistribution
/** /**
* Get variance. * Get variance.
* *
* @param float $p * @param float $p Value p
* *
* @return float * @return float
* *
@ -118,8 +118,8 @@ class BernoulliDistribution
/** /**
* Get moment generating function. * Get moment generating function.
* *
* @param float $p * @param float $p Value p
* @param float $t * @param float $t Value t
* *
* @return float * @return float
* *
@ -133,7 +133,7 @@ class BernoulliDistribution
/** /**
* Get skewness. * Get skewness.
* *
* @param float $p * @param float $p Value p
* *
* @return float * @return float
* *
@ -147,7 +147,7 @@ class BernoulliDistribution
/** /**
* Get Fisher information. * Get Fisher information.
* *
* @param float $p * @param float $p Value p
* *
* @return float * @return float
* *
@ -161,7 +161,7 @@ class BernoulliDistribution
/** /**
* Get Ex. kurtosis. * Get Ex. kurtosis.
* *
* @param float $p * @param float $p Value p
* *
* @return float * @return float
* *

View File

@ -30,8 +30,8 @@ class BinomialDistribution
/** /**
* Get mode. * Get mode.
* *
* @param int $n * @param int $n Value n
* @param float $p * @param float $p Value p
* *
* @return float * @return float
* *
@ -55,9 +55,9 @@ class BinomialDistribution
/** /**
* Get moment generating function. * Get moment generating function.
* *
* @param int $n * @param int $n Value n
* @param float $t * @param float $t Value t
* @param float $p * @param float $p Value p
* *
* @return float * @return float
* *
@ -71,8 +71,8 @@ class BinomialDistribution
/** /**
* Get skewness. * Get skewness.
* *
* @param int $n * @param int $n Value n
* @param float $p * @param float $p Value p
* *
* @return float * @return float
* *
@ -86,8 +86,8 @@ class BinomialDistribution
/** /**
* Get Fisher information. * Get Fisher information.
* *
* @param int $n * @param int $n Value n
* @param float $p * @param float $p Value p
* *
* @return float * @return float
* *
@ -101,8 +101,8 @@ class BinomialDistribution
/** /**
* Get Ex. kurtosis. * Get Ex. kurtosis.
* *
* @param int $n * @param int $n Value n
* @param float $p * @param float $p Value p
* *
* @return float * @return float
* *
@ -116,9 +116,9 @@ class BinomialDistribution
/** /**
* Get cumulative distribution function. * Get cumulative distribution function.
* *
* @param int $n * @param int $n Value n
* @param int $x * @param int $x Value x
* @param float $p * @param float $p Value p
* *
* @return float * @return float
* *
@ -140,9 +140,9 @@ class BinomialDistribution
* *
* Formula: C(n, k) * p^k * (1-p)^(n-k) * Formula: C(n, k) * p^k * (1-p)^(n-k)
* *
* @param int $n * @param int $n Value n
* @param int $k * @param int $k Value k
* @param float $p * @param float $p Value p
* *
* @return float * @return float
* *
@ -156,8 +156,8 @@ class BinomialDistribution
/** /**
* Get expected value. * Get expected value.
* *
* @param int $n * @param int $n Value n
* @param float $p * @param float $p Value p
* *
* @return float * @return float
* *
@ -171,8 +171,8 @@ class BinomialDistribution
/** /**
* Get expected value. * Get expected value.
* *
* @param int $n * @param int $n Value n
* @param float $p * @param float $p Value p
* *
* @return float * @return float
* *
@ -186,8 +186,8 @@ class BinomialDistribution
/** /**
* Get variance. * Get variance.
* *
* @param int $n * @param int $n Value n
* @param float $p * @param float $p Value p
* *
* @return float * @return float
* *

View File

@ -27,8 +27,8 @@ class GeometricDistribution
/** /**
* Get probability mass function. * Get probability mass function.
* *
* @param float $p * @param float $p Value p
* @param int $k * @param int $k Value k
* *
* @return float * @return float
* *
@ -42,8 +42,8 @@ class GeometricDistribution
/** /**
* Get cumulative distribution function. * Get cumulative distribution function.
* *
* @param float $p * @param float $p Value p
* @param int $k * @param int $k Value k
* *
* @return float * @return float
* *
@ -69,7 +69,7 @@ class GeometricDistribution
/** /**
* Get expected value. * Get expected value.
* *
* @param float $p * @param float $p Value p
* *
* @return float * @return float
* *
@ -83,7 +83,7 @@ class GeometricDistribution
/** /**
* Get expected value. * Get expected value.
* *
* @param float $p * @param float $p Value p
* *
* @return float * @return float
* *
@ -97,7 +97,7 @@ class GeometricDistribution
/** /**
* Get variance. * Get variance.
* *
* @param float $p * @param float $p Value p
* *
* @return float * @return float
* *
@ -111,8 +111,8 @@ class GeometricDistribution
/** /**
* Get moment generating function. * Get moment generating function.
* *
* @param float $p * @param float $p Value p
* @param float $t * @param float $t Value t
* *
* @return float * @return float
* *
@ -126,7 +126,7 @@ class GeometricDistribution
/** /**
* Get skewness. * Get skewness.
* *
* @param float $lambda * @param float $lambda Lambda
* *
* @return float * @return float
* *
@ -140,7 +140,7 @@ class GeometricDistribution
/** /**
* Get Ex. kurtosis. * Get Ex. kurtosis.
* *
* @param float $lambda * @param float $lambda Lambda
* *
* @return float * @return float
* *

View File

@ -27,9 +27,9 @@ class LaplaceDistribution
/** /**
* Get probability density function. * Get probability density function.
* *
* @param float $x * @param float $x Value x
* @param float $mu * @param float $mu Value mu
* @param float $b * @param float $b Value b
* *
* @return float * @return float
* *
@ -43,9 +43,9 @@ class LaplaceDistribution
/** /**
* Get cumulative distribution function. * Get cumulative distribution function.
* *
* @param float $x * @param float $x Value x
* @param float $mu * @param float $mu Value mu
* @param float $b * @param float $b Value b
* *
* @return float * @return float
* *
@ -59,7 +59,7 @@ class LaplaceDistribution
/** /**
* Get mode. * Get mode.
* *
* @param float $mu * @param float $mu Value mu
* *
* @return float * @return float
* *
@ -73,7 +73,7 @@ class LaplaceDistribution
/** /**
* Get expected value. * Get expected value.
* *
* @param float $mu * @param float $mu Value mu
* *
* @return float * @return float
* *
@ -87,7 +87,7 @@ class LaplaceDistribution
/** /**
* Get expected value. * Get expected value.
* *
* @param float $mu * @param float $mu Value mu
* *
* @return float * @return float
* *
@ -101,7 +101,7 @@ class LaplaceDistribution
/** /**
* Get variance. * Get variance.
* *
* @param float $b * @param float $b Value b
* *
* @return float * @return float
* *
@ -115,9 +115,9 @@ class LaplaceDistribution
/** /**
* Get moment generating function. * Get moment generating function.
* *
* @param float $t * @param float $t Valute t
* @param float $mu * @param float $mu Value mu
* @param float $b * @param float $b Value b
* *
* @return float * @return float
* *

View File

@ -31,8 +31,8 @@ class PoissonDistribution
* *
* Formula: e^(k * ln(lambda) - lambda - log(gamma(k+1)) * Formula: e^(k * ln(lambda) - lambda - log(gamma(k+1))
* *
* @param int $k * @param int $k Value k
* @param float $lambda * @param float $lambda Lambda
* *
* @return float * @return float
* *
@ -46,8 +46,8 @@ class PoissonDistribution
/** /**
* Get cumulative distribution function. * Get cumulative distribution function.
* *
* @param int $k * @param int $k Value k
* @param float $lambda * @param float $lambda Lambda
* *
* @return float * @return float
* *
@ -123,8 +123,8 @@ class PoissonDistribution
/** /**
* Get moment generating function. * Get moment generating function.
* *
* @param float $lambda * @param float $lambda Lambda
* @param float $t * @param float $t Value t
* *
* @return float * @return float
* *
@ -138,7 +138,7 @@ class PoissonDistribution
/** /**
* Get skewness. * Get skewness.
* *
* @param float $lambda * @param float $lambda Lambda
* *
* @return float * @return float
* *
@ -152,7 +152,7 @@ class PoissonDistribution
/** /**
* Get Fisher information. * Get Fisher information.
* *
* @param float $lambda * @param float $lambda Lambda
* *
* @return float * @return float
* *
@ -166,7 +166,7 @@ class PoissonDistribution
/** /**
* Get Ex. kurtosis. * Get Ex. kurtosis.
* *
* @param float $lambda * @param float $lambda Lambda
* *
* @return float * @return float
* *

View File

@ -28,8 +28,8 @@ class UniformDistributionContinuous
/** /**
* Get mode. * Get mode.
* *
* @param float $a * @param float $a Value a
* @param float $b * @param float $b Value b
* *
* @return float * @return float
* *
@ -43,9 +43,9 @@ class UniformDistributionContinuous
/** /**
* Get probability density function. * Get probability density function.
* *
* @param float $x * @param float $x Value x
* @param float $a * @param float $a Value a
* @param float $b * @param float $b Value b
* *
* @return float * @return float
* *
@ -59,9 +59,9 @@ class UniformDistributionContinuous
/** /**
* Get cumulative distribution function. * Get cumulative distribution function.
* *
* @param float $x * @param float $x Value x
* @param float $a * @param float $a Value a
* @param float $b * @param float $b Value b
* *
* @return float * @return float
* *
@ -81,9 +81,9 @@ class UniformDistributionContinuous
/** /**
* Get moment generating function. * Get moment generating function.
* *
* @param int $t * @param int $t Value t
* @param float $a * @param float $a Value a
* @param float $b * @param float $b Value b
* *
* @return float * @return float
* *
@ -121,8 +121,8 @@ class UniformDistributionContinuous
/** /**
* Get expected value. * Get expected value.
* *
* @param float $a * @param float $a Value a
* @param float $b * @param float $b Value b
* *
* @return float * @return float
* *
@ -136,8 +136,8 @@ class UniformDistributionContinuous
/** /**
* Get expected value. * Get expected value.
* *
* @param float $a * @param float $a Value a
* @param float $b * @param float $b Value b
* *
* @return float * @return float
* *
@ -151,8 +151,8 @@ class UniformDistributionContinuous
/** /**
* Get variance. * Get variance.
* *
* @param float $a * @param float $a Value a
* @param float $b * @param float $b Value b
* *
* @return float * @return float
* *

View File

@ -28,8 +28,8 @@ class UniformDistributionDiscrete
/** /**
* Get probability mass function. * Get probability mass function.
* *
* @param float $a * @param float $a Value a
* @param float $b * @param float $b Value b
* *
* @return float * @return float
* *
@ -43,9 +43,9 @@ class UniformDistributionDiscrete
/** /**
* Get cumulative distribution function. * Get cumulative distribution function.
* *
* @param float $k * @param float $k Value k
* @param float $a * @param float $a Value a
* @param float $b * @param float $b Value b
* *
* @return float * @return float
* *
@ -65,9 +65,9 @@ class UniformDistributionDiscrete
/** /**
* Get moment generating function. * Get moment generating function.
* *
* @param int $t * @param int $t Value t
* @param float $a * @param float $a Value a
* @param float $b * @param float $b Value b
* *
* @return float * @return float
* *
@ -93,8 +93,8 @@ class UniformDistributionDiscrete
/** /**
* Get Ex. kurtosis. * Get Ex. kurtosis.
* *
* @param float $a * @param float $a Value a
* @param float $b * @param float $b Value b
* *
* @return float * @return float
* *
@ -110,8 +110,8 @@ class UniformDistributionDiscrete
/** /**
* Get expected value. * Get expected value.
* *
* @param float $a * @param float $a Value a
* @param float $b * @param float $b Value b
* *
* @return float * @return float
* *
@ -125,8 +125,8 @@ class UniformDistributionDiscrete
/** /**
* Get expected value. * Get expected value.
* *
* @param float $a * @param float $a Value a
* @param float $b * @param float $b Value b
* *
* @return float * @return float
* *
@ -140,8 +140,8 @@ class UniformDistributionDiscrete
/** /**
* Get variance. * Get variance.
* *
* @param float $a * @param float $a Value a
* @param float $b * @param float $b Value b
* *
* @return float * @return float
* *

View File

@ -121,9 +121,11 @@ class EmailAbstract
/** /**
* Disconnect server * Disconnect server
* *
* @return void
*
* @since 1.0.0 * @since 1.0.0
*/ */
public function disconnect() public function disconnect() /* : void */
{ {
if (!isset($this->con)) { if (!isset($this->con)) {
imap_close($this->con); imap_close($this->con);

View File

@ -113,6 +113,16 @@ class PhpCode
return false; return false;
} }
/**
* Validate file integrety
*
* @param string $source Source code
* @param string $hash Source hash
*
* @return bool
*
* @since 1.0.0
*/
public static function validateFileIntegrity(string $source, string $hash) : array public static function validateFileIntegrity(string $source, string $hash) : array
{ {

View File

@ -47,9 +47,11 @@ class Client extends SocketAbstract
/** /**
* Disconnect from server. * Disconnect from server.
* *
* @return void
*
* @since 1.0.0 * @since 1.0.0
*/ */
private function disconnect() private function disconnect() /* : void */
{ {
$this->run = false; $this->run = false;
} }

View File

@ -40,7 +40,6 @@ abstract class PacketAbstract implements \Serializable
* *
* This is using a json format * This is using a json format
* *
* @var Header
* @since 1.0.0 * @since 1.0.0
*/ */
abstract public function __toString(); abstract public function __toString();
@ -52,7 +51,6 @@ abstract class PacketAbstract implements \Serializable
* *
* @return string Json string * @return string Json string
* *
* @var Header
* @since 1.0.0 * @since 1.0.0
*/ */
abstract public function serialize(); abstract public function serialize();
@ -64,7 +62,8 @@ abstract class PacketAbstract implements \Serializable
* *
* @param string $string Json string * @param string $string Json string
* *
* @var Header * @return void
*
* @since 1.0.0 * @since 1.0.0
*/ */
abstract public function unserialize($string); abstract public function unserialize($string);
@ -74,7 +73,6 @@ abstract class PacketAbstract implements \Serializable
* *
* @return Header * @return Header
* *
* @var Header
* @since 1.0.0 * @since 1.0.0
*/ */
public function getHeader() : Header public function getHeader() : Header
@ -87,7 +85,8 @@ abstract class PacketAbstract implements \Serializable
* *
* @param Header $header Header * @param Header $header Header
* *
* @var Header * @return void
*
* @since 1.0.0 * @since 1.0.0
*/ */
public function setHeader(Header $header) /* : void */ public function setHeader(Header $header) /* : void */

View File

@ -38,14 +38,18 @@ interface SocketInterface
/** /**
* Close socket. * Close socket.
* *
* @return void
*
* @since 1.0.0 * @since 1.0.0
*/ */
public function close(); public function close(); /* : void */
/** /**
* Run socket. * Run socket.
* *
* @return void
*
* @since 1.0.0 * @since 1.0.0
*/ */
public function run(); public function run(); /* : void */
} }

View File

@ -123,9 +123,11 @@ class BinaryTree extends Tree
* @param Node $node Tree node * @param Node $node Tree node
* @param \Closure $callback Task to perform on node * @param \Closure $callback Task to perform on node
* *
* @return void
*
* @since 1.0.0 * @since 1.0.0
*/ */
public function inOrder(Node $node, \Closure $callback) public function inOrder(Node $node, \Closure $callback) /* : void */
{ {
$this->inOrder($this->getLeft($node), $callback); $this->inOrder($this->getLeft($node), $callback);
$callback($node); $callback($node);
@ -137,11 +139,13 @@ class BinaryTree extends Tree
* *
* @param Node $node Tree node * @param Node $node Tree node
* @param int $horizontalDistance Horizontal distance * @param int $horizontalDistance Horizontal distance
* @param Node[] &$order Ordered nodes by horizontal distance * @param Node[] $order Ordered nodes by horizontal distance
*
* @return void
* *
* @since 1.0.0 * @since 1.0.0
*/ */
private function getVerticalOrder(Node $node, int $horizontalDistance = 0, array &$order) private function getVerticalOrder(Node $node, int $horizontalDistance = 0, array &$order) /* : void */
{ {
if (!isset($order[$horizontalDistance])) { if (!isset($order[$horizontalDistance])) {
$order[$horizontalDistance] = []; $order[$horizontalDistance] = [];

View File

@ -146,6 +146,8 @@ abstract class C128Abstract
* @param int $width Barcode width * @param int $width Barcode width
* @param int $height Barcode height * @param int $height Barcode height
* *
* @return void
*
* @since 1.0.0 * @since 1.0.0
*/ */
public function setDimension(int $width, int $height) /* : void */ public function setDimension(int $width, int $height) /* : void */
@ -167,6 +169,8 @@ abstract class C128Abstract
* *
* @param int $margin Barcode margin * @param int $margin Barcode margin
* *
* @return void
*
* @since 1.0.0 * @since 1.0.0
*/ */
public function setMargin(int $margin) /* : void */ public function setMargin(int $margin) /* : void */
@ -179,6 +183,8 @@ abstract class C128Abstract
* *
* @param int $orientation Barcode orientation * @param int $orientation Barcode orientation
* *
* @return void
*
* @since 1.0.0 * @since 1.0.0
*/ */
public function setOrientation(int $orientation) /* : void */ public function setOrientation(int $orientation) /* : void */
@ -207,6 +213,8 @@ abstract class C128Abstract
* *
* @param string $content Barcode content * @param string $content Barcode content
* *
* @return void
*
* @since 1.0.0 * @since 1.0.0
*/ */
public function setContent(string $content) /* : void */ public function setContent(string $content) /* : void */

View File

@ -88,6 +88,8 @@ class C25 extends C128Abstract
* *
* @param string $content Barcode content * @param string $content Barcode content
* *
* @return void
*
* @since 1.0.0 * @since 1.0.0
*/ */
public function setContent(string $content) /* : void */ public function setContent(string $content) /* : void */

View File

@ -66,6 +66,8 @@ class C39 extends C128Abstract
* *
* @param string $content Barcode content * @param string $content Barcode content
* *
* @return void
*
* @since 1.0.0 * @since 1.0.0
*/ */
public function setContent(string $content) /* : void */ public function setContent(string $content) /* : void */

View File

@ -67,6 +67,8 @@ class Codebar extends C128Abstract
* *
* @param string $content Barcode content * @param string $content Barcode content
* *
* @return void
*
* @since 1.0.0 * @since 1.0.0
*/ */
public function setContent(string $content) /* : void */ public function setContent(string $content) /* : void */

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\Utils\Converter
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -19,7 +19,7 @@ use phpOMS\Stdlib\Base\Enum;
/** /**
* Speed type enum. * Speed type enum.
* *
* @package Framework * @package phpOMS\Utils\Converter
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\Utils\Converter
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -19,7 +19,7 @@ use phpOMS\Stdlib\Base\Enum;
/** /**
* Area type enum. * Area type enum.
* *
* @package Framework * @package phpOMS\Utils\Converter
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\Utils\Converter
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -23,7 +23,7 @@ use phpOMS\Uri\Http;
/** /**
* Currency converter. * Currency converter.
* *
* @package Framework * @package phpOMS\Utils\Converter
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\Utils\Converter
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -19,7 +19,7 @@ use phpOMS\Stdlib\Base\Enum;
/** /**
* Speed type enum. * Speed type enum.
* *
* @package Framework * @package phpOMS\Utils\Converter
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\Utils\Converter
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -17,7 +17,7 @@ namespace phpOMS\Utils\Converter;
/** /**
* File converter. * File converter.
* *
* @package Framework * @package phpOMS\Utils\Converter
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\Utils\Converter
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -19,7 +19,7 @@ use phpOMS\Stdlib\Base\Enum;
/** /**
* File size type enum. * File size type enum.
* *
* @package Framework * @package phpOMS\Utils\Converter
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\Utils\Converter
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -17,7 +17,7 @@ namespace phpOMS\Utils\Converter;
/** /**
* Ip converter. * Ip converter.
* *
* @package Framework * @package phpOMS\Utils\Converter
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0
@ -41,6 +41,8 @@ class Ip
* *
* @param string $ip IP * @param string $ip IP
* *
* @return float
*
* @since 1.0.0 * @since 1.0.0
*/ */
public static function ip2Float(string $ip) : float public static function ip2Float(string $ip) : float

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\Utils\Converter
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -19,7 +19,7 @@ use phpOMS\Stdlib\Base\Enum;
/** /**
* Length type enum. * Length type enum.
* *
* @package Framework * @package phpOMS\Utils\Converter
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\Utils\Converter
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -17,7 +17,7 @@ namespace phpOMS\Utils\Converter;
/** /**
* Measurement converter. * Measurement converter.
* *
* @package Framework * @package phpOMS\Utils\Converter
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\Utils\Converter
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -17,7 +17,7 @@ namespace phpOMS\Utils\Converter;
/** /**
* Numeric converter. * Numeric converter.
* *
* @package Framework * @package phpOMS\Utils\Converter
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\Utils\Converter
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -19,7 +19,7 @@ use phpOMS\Stdlib\Base\Enum;
/** /**
* Speed type enum. * Speed type enum.
* *
* @package Framework * @package phpOMS\Utils\Converter
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\Utils\Converter
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -19,7 +19,7 @@ use phpOMS\Stdlib\Base\Enum;
/** /**
* Speed type enum. * Speed type enum.
* *
* @package Framework * @package phpOMS\Utils\Converter
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\Utils\Converter
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -19,7 +19,7 @@ use phpOMS\Stdlib\Base\Enum;
/** /**
* Temperature type enum. * Temperature type enum.
* *
* @package Framework * @package phpOMS\Utils\Converter
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\Utils\Converter
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -19,7 +19,7 @@ use phpOMS\Stdlib\Base\Enum;
/** /**
* Time type enum. * Time type enum.
* *
* @package Framework * @package phpOMS\Utils\Converter
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\Utils\Converter
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -19,7 +19,7 @@ use phpOMS\Stdlib\Base\Enum;
/** /**
* Volume type enum. * Volume type enum.
* *
* @package Framework * @package phpOMS\Utils\Converter
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\Utils\Converter
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -19,7 +19,7 @@ use phpOMS\Stdlib\Base\Enum;
/** /**
* Weight type enum. * Weight type enum.
* *
* @package Framework * @package phpOMS\Utils\Converter
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\Utils\Git
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -17,7 +17,7 @@ namespace phpOMS\Utils\Git;
/** /**
* Gray encoding class * Gray encoding class
* *
* @package Framework * @package phpOMS\Utils\Git
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\Utils\Git
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -17,7 +17,7 @@ namespace phpOMS\Utils\Git;
/** /**
* Gray encoding class * Gray encoding class
* *
* @package Framework * @package phpOMS\Utils\Git
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\Utils\Git
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -17,7 +17,7 @@ namespace phpOMS\Utils\Git;
/** /**
* Gray encoding class * Gray encoding class
* *
* @package Framework * @package phpOMS\Utils\Git
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\Utils\Git
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -19,7 +19,7 @@ use phpOMS\System\File\PathException;
/** /**
* Gray encoding class * Gray encoding class
* *
* @package Framework * @package phpOMS\Utils\Git
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\Utils\Git
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -20,7 +20,7 @@ use phpOMS\Utils\StringUtils;
/** /**
* Repository class * Repository class
* *
* @package Framework * @package phpOMS\Utils\Git
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0

View File

@ -4,7 +4,7 @@
* *
* PHP Version 7.1 * PHP Version 7.1
* *
* @package TBD * @package phpOMS\Utils\Git
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -17,7 +17,7 @@ namespace phpOMS\Utils\Git;
/** /**
* Gray encoding class * Gray encoding class
* *
* @package Framework * @package phpOMS\Utils\Git
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://website.orange-management.de * @link http://website.orange-management.de
* @since 1.0.0 * @since 1.0.0