Remove author

This commit is contained in:
Dennis Eichhorn 2017-07-24 17:51:37 +02:00
parent 8cb5f742db
commit c05086c233
33 changed files with 13 additions and 290 deletions

View File

@ -37,7 +37,6 @@ class MarketShareEstimation {
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getRankFromMarketShare(int $participants, float $marketShare, float $modifier = 1.0) : int
{
@ -61,7 +60,6 @@ class MarketShareEstimation {
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getMarketShareFromRank(int $participants, int $rank, float $modifier = 1.0) : float
{

View File

@ -64,7 +64,6 @@ class CommandManager implements \Countable
* @return bool
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function attach(string $cmd, $callback, $source, bool $overwrite = true) : bool
{
@ -87,7 +86,6 @@ class CommandManager implements \Countable
* @return bool
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function detach(string $cmd, $source) : bool
{
@ -110,7 +108,6 @@ class CommandManager implements \Countable
* @return mixed|bool
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function trigger(string $cmd, $para)
{
@ -127,7 +124,6 @@ class CommandManager implements \Countable
* @return int
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function count() : int
{

View File

@ -99,7 +99,6 @@ class FileLogger implements LoggerInterface
* @param bool $verbose Verbose logging
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function __construct(string $lpath, bool $verbose = false)
{
@ -155,7 +154,6 @@ class FileLogger implements LoggerInterface
* Closes the logging file
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function __destruct()
{
@ -181,7 +179,6 @@ class FileLogger implements LoggerInterface
* @return void
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function startTimeLog($id = '')
{
@ -199,7 +196,6 @@ class FileLogger implements LoggerInterface
* @return int the time measurement
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function endTimeLog($id = '')
{
@ -220,7 +216,6 @@ class FileLogger implements LoggerInterface
* @return void
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function timingSort(&$timings)
{
@ -237,7 +232,6 @@ class FileLogger implements LoggerInterface
* @return string
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
private function interpolate(string $message, array $context = [], string $level = LogLevel::DEBUG)
{
@ -278,7 +272,6 @@ class FileLogger implements LoggerInterface
* @return int
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
private function orderSort($a, $b) : int
{
@ -297,7 +290,6 @@ class FileLogger implements LoggerInterface
* @return void
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
private function write(string $message) /* : void */
{
@ -330,7 +322,6 @@ class FileLogger implements LoggerInterface
* @return null
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function emergency(string $message, array $context = []) /* : void */
{
@ -350,7 +341,6 @@ class FileLogger implements LoggerInterface
* @return void
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function alert(string $message, array $context = []) /* : void */
{
@ -369,7 +359,6 @@ class FileLogger implements LoggerInterface
* @return void
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function critical(string $message, array $context = []) /* : void */
{
@ -387,7 +376,6 @@ class FileLogger implements LoggerInterface
* @return void
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function error(string $message, array $context = []) /* : void */
{
@ -407,7 +395,6 @@ class FileLogger implements LoggerInterface
* @return void
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function warning(string $message, array $context = []) /* : void */
{
@ -424,7 +411,6 @@ class FileLogger implements LoggerInterface
* @return void
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function notice(string $message, array $context = []) /* : void */
{
@ -443,7 +429,6 @@ class FileLogger implements LoggerInterface
* @return void
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function info(string $message, array $context = []) /* : void */
{
@ -460,7 +445,6 @@ class FileLogger implements LoggerInterface
* @return void
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function debug(string $message, array $context = []) /* : void */
{
@ -478,7 +462,6 @@ class FileLogger implements LoggerInterface
* @return void
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function log(string $level, string $message, array $context = []) /* : void */
{

View File

@ -42,7 +42,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getAnnualPercentageYield(float $r, int $n) : float
{
@ -60,7 +59,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getStateAnnualInterestRateOfAPY(float $apy, int $n) : float
{
@ -77,7 +75,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getFutureValueOfAnnuity(float $P, float $r, int $n) : float
{
@ -94,7 +91,6 @@ class FinanceFormulas
* @return int
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getNumberOfPeriodsOfFVA(float $fva, float $P, float $r) : int
{
@ -111,7 +107,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getPeriodicPaymentOfFVA(float $fva, float $r, int $n) : float
{
@ -129,7 +124,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getFutureValueOfAnnuityConinuousCompounding(float $cf, float $r, int $t) : float
{
@ -146,7 +140,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getCashFlowOfFVACC(float $fvacc, float $r, int $t) : float
{
@ -163,7 +156,6 @@ class FinanceFormulas
* @return int
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getTimeOfFVACC(float $fvacc, float $cf, float $r) : int
{
@ -180,7 +172,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getAnnuityPaymentPV(float $pv, float $r, int $n) : float
{
@ -197,7 +188,6 @@ class FinanceFormulas
* @return int
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getNumberOfAPPV(float $p, float $pv, float $r) : int
{
@ -214,7 +204,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getPresentValueOfAPPV(float $p, float $r, int $n) : float
{
@ -231,7 +220,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getAnnuityPaymentFV(float $fv, float $r, int $n) : float
{
@ -248,7 +236,6 @@ class FinanceFormulas
* @return int
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getNumberOfAPFV(float $p, float $fv, float $r) : int
{
@ -265,7 +252,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getFutureValueOfAPFV(float $p, float $r, int $n) : float
{
@ -281,7 +267,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getAnnutiyPaymentFactorPV(float $r, int $n) : float
{
@ -297,7 +282,6 @@ class FinanceFormulas
* @return int
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getNumberOfAPFPV(float $p, float $r) : int
{
@ -314,7 +298,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getPresentValueOfAnnuity(float $P, float $r, int $n) : float
{
@ -331,7 +314,6 @@ class FinanceFormulas
* @return int
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getNumberOfPeriodsOfPVA(float $pva, float $P, float $r) : int
{
@ -348,7 +330,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getPeriodicPaymentOfPVA(float $pva, float $r, int $n) : float
{
@ -364,7 +345,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getPresentValueAnnuityFactor(float $r, int $n) : float
{
@ -380,7 +360,6 @@ class FinanceFormulas
* @return int
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getPeriodsOfPVAF(float $p, float $r) : int
{
@ -397,7 +376,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getPresentValueOfAnnuityDue(float $P, float $r, int $n) : float
{
@ -416,7 +394,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getPeriodicPaymentOfPVAD(float $PV, float $r, int $n) : float
{
@ -433,7 +410,6 @@ class FinanceFormulas
* @return int
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getPeriodsOfPVAD(float $PV, float $P, float $r) : int
{
@ -450,7 +426,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getFutureValueOfAnnuityDue(float $P, float $r, int $n) : float
{
@ -467,7 +442,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getPeriodicPaymentOfFVAD(float $FV, float $r, int $n) : float
{
@ -484,7 +458,6 @@ class FinanceFormulas
* @return int
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getPeriodsOfFVAD(float $FV, float $P, float $r) : int
{
@ -500,7 +473,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getAssetToSalesRatio(float $assets, float $revenue) : float
{
@ -516,7 +488,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getAssetTurnoverRatio(float $assets, float $revenue) : float
{
@ -532,7 +503,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getAverageCollectionPeriod(float $receivables, int $period = 365) : float
{
@ -548,7 +518,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getReceivablesTurnover(float $sales, float $receivables) : float
{
@ -565,7 +534,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getCompoundInterest(float $P, float $r, int $n) : float
{
@ -582,7 +550,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getPrincipalOfCompundInterest(float $C, float $r, int $n) : float
{
@ -599,7 +566,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getPeriodsOfCompundInterest(float $P, float $C, float $r) : float
{
@ -616,7 +582,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getContinuousCompounding(float $P, float $r, int $t) : float
{
@ -633,7 +598,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getPrincipalOfContinuousCompounding(float $C, float $r, int $t) : float
{
@ -650,7 +614,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getPeriodsOfContinuousCompounding(float $P, float $C, float $r) : float
{
@ -667,7 +630,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getRateOfContinuousCompounding(float $P, float $C, float $t) : float
{
@ -683,7 +645,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getCurrentRaio(float $assets, float $liabilities) : float
{
@ -698,7 +659,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getDaysInInventory(float $inventory) : float
{
@ -714,7 +674,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getDebtCoverageRatio(float $income, float $service) : float
{
@ -730,7 +689,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getDebtRatio(float $liabilities, float $assets) : float
{
@ -746,7 +704,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getDebtToEquityRatio(float $liabilities, float $equity) : float
{
@ -762,7 +719,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getDebtToIncomeRatio(float $payments, float $income) : float
{
@ -779,7 +735,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getDiscountedPaybackPeriod(float $CF, float $O1, float $r) : float
{
@ -794,7 +749,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getDoublingTime(float $r) : float
{
@ -809,7 +763,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getDoublingTimeContinuousCompounding(float $r) : float
{
@ -826,7 +779,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getEquivalentAnnualAnnuity(float $NPV, float $r, int $n) : float
{
@ -843,7 +795,6 @@ class FinanceFormulas
* @return int
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getPeriodsOfEAA(float $C, float $NPV, float $r) : int
{
@ -860,7 +811,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getNetPresentValueOfEAA(float $C, float $r, int $n) : float
{
@ -879,7 +829,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getFreeCashFlowToEquity(float $income, float $depamo, float $capital, float $wc, float $borrowing) : float
{
@ -898,7 +847,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getFreeCashFlowToFirm(float $ebit, float $t, float $depamo, float $capital, float $wc) : float
{
@ -915,7 +863,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getFutureValue(float $C, float $r, int $n) : float
{
@ -932,7 +879,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getFutureValueContinuousCompounding(float $PV, float $r, int $t) : float
{
@ -948,7 +894,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getFutureValueFactor(float $r, int $n) : float
{
@ -963,7 +908,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getGeometricMeanReturn(array $r) : float
{
@ -981,7 +925,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getGrowingAnnuityFV(float $P, float $r, float $g, int $n) : float
{
@ -999,7 +942,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getGrowingAnnuityPaymentPV(float $PV, float $r, float $g, int $n) : float
{
@ -1017,7 +959,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getGrowingAnnuityPaymentFV(float $FV, float $r, float $g, int $n) : float
{
@ -1035,7 +976,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getGrowingAnnuityPV(float $P, float $r, float $g, int $n) : float
{
@ -1052,7 +992,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getGrowingPerpetuityPV(float $D, float $r, float $g) : float
{
@ -1068,7 +1007,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getInterestCoverageRatio(float $ebit, float $expense) : float
{
@ -1084,7 +1022,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getInventoryTurnoverRatio(float $sales, float $inventory) : float
{
@ -1102,7 +1039,6 @@ class FinanceFormulas
* @throws \Exception
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getNetPresentValue(array $C, float $r) : float
{
@ -1130,7 +1066,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getNetProfitMargin(float $income, float $sales) : float
{
@ -1146,7 +1081,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getNetWorkingCapital(float $assets, float $liabilities) : float
{
@ -1163,7 +1097,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getNumberOfPeriodsPVFV(float $FV, float $PV, float $r) : float
{
@ -1179,7 +1112,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getPaybackPeriod(float $investment, float $cash) : float
{
@ -1195,7 +1127,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getPresentValueOfPerpetuity(float $D, float $r) : float
{
@ -1212,7 +1143,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getPresentValue(float $C, float $r, int $n) : float
{
@ -1229,7 +1159,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getPresentValueContinuousCompounding(float $C, float $r, int $t) : float
{
@ -1245,7 +1174,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getPresentValueFactor(float $r, int $n) : float
{
@ -1261,7 +1189,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getQuickRatio(float $assets, float $liabilities) : float
{
@ -1277,7 +1204,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getRateOfOnflation(float $oldCPI, float $newCPI) : float
{
@ -1293,7 +1219,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getRealRateOfReturn(float $nominal, float $inflation) : float
{
@ -1309,7 +1234,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getReceivablesTurnoverRatio(float $sales, float $receivable) : float
{
@ -1325,7 +1249,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getRetentionRatio(float $income, float $dividends) : float
{
@ -1341,7 +1264,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getReturnOnAssets(float $income, float $assets) : float
{
@ -1357,7 +1279,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getReturnOnEquity(float $income, float $equity) : float
{
@ -1373,7 +1294,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getReturnOnInvestment(float $earnings, float $investment) : float
{
@ -1390,7 +1310,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getSimpleInterest(float $P, float $r, int $t) : float
{
@ -1406,7 +1325,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getRelativeMarketShareByShare(float $ownShare, float $competitorShare) : float
{
@ -1422,7 +1340,6 @@ class FinanceFormulas
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getRelativeMarketShareBySales(float $ownSales, float $competitorSales) : float
{

View File

@ -39,7 +39,6 @@ class Loan
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getPaymentsOnBalloonLoan(float $PV, float $r, int $n, float $balloon = 0) : float
{
@ -57,7 +56,6 @@ class Loan
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getBalloonBalanceOfLoan(float $PV, float $P, float $r, int $n) : float
{
@ -74,7 +72,6 @@ class Loan
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getLoanPayment(float $PV, float $r, int $n) : float
{
@ -92,7 +89,6 @@ class Loan
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getRemainingBalanceLoan(float $PV, float $P, float $r, int $n) : float
{
@ -108,7 +104,6 @@ class Loan
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getLoanToDepositRatio(float $loans, float $deposits) : float
{
@ -124,7 +119,6 @@ class Loan
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getLoanToValueRatio(float $loan, float $collateral) : float
{

View File

@ -38,7 +38,6 @@ class StockBonds
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getBondEquivalentYield(float $fv, float $price, int $days) : float
{
@ -54,7 +53,6 @@ class StockBonds
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getBookValuePerShare(float $total, int $common) : float
{
@ -71,7 +69,6 @@ class StockBonds
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getExpectedReturnCAPM(float $rf, float $beta, float $r) : float
{
@ -87,7 +84,6 @@ class StockBonds
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getCapitalGainsYield(float $P0, float $P1) : float
{
@ -103,7 +99,6 @@ class StockBonds
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getCurrentYield(float $coupons, float $price) : float
{
@ -120,7 +115,6 @@ class StockBonds
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getDilutedEarningsPerShare(float $income, float $avg, float $other) : float
{
@ -136,7 +130,6 @@ class StockBonds
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getDividendPayoutRatio(float $dividends, float $income) : float
{
@ -152,7 +145,6 @@ class StockBonds
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getDividendYield(float $dividends, float $price) : float
{
@ -168,7 +160,6 @@ class StockBonds
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getDividendsPerShare(float $dividends, int $shares) : float
{
@ -184,7 +175,6 @@ class StockBonds
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getEarningsPerShare(float $income, float $shares) : float
{
@ -200,7 +190,6 @@ class StockBonds
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getEquityMultiplier(float $assets, float $equity) : float
{
@ -215,7 +204,6 @@ class StockBonds
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getHoldingPeriodReturn(array $r) : float
{
@ -238,7 +226,6 @@ class StockBonds
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getNetAssetValue(float $assets, float $liabilities, int $shares) : float
{
@ -254,7 +241,6 @@ class StockBonds
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getPriceToBookValue(float $market, float $book) : float
{
@ -270,7 +256,6 @@ class StockBonds
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getPriceEarningsRatio(float $price, float $earnings) : float
{
@ -286,7 +271,6 @@ class StockBonds
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getPriceToSalesRatio(float $price, float $sales) : float
{
@ -303,7 +287,6 @@ class StockBonds
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getPresentValueOfStockConstantGrowth(float $dividend, float $r, float $g = 0.0) : float
{
@ -319,7 +302,6 @@ class StockBonds
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getTaxEquivalentYield(float $free, float $tax) : float
{
@ -336,7 +318,6 @@ class StockBonds
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getTotalStockReturn(float $P0, float $P1, float $D) : float
{
@ -354,7 +335,6 @@ class StockBonds
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getYieldToMaturity(float $C, float $F, float $P, int $n) : float
{
@ -371,7 +351,6 @@ class StockBonds
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getZeroCouponBondValue(float $F, float $r, int $t) : float
{
@ -388,7 +367,6 @@ class StockBonds
* @return float
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getZeroCouponBondEffectiveYield(float $F, float $PV, int $n) : float
{

View File

@ -50,7 +50,6 @@ class Integer
* @return array
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function trialFactorization(int $value) : array
{
@ -93,7 +92,6 @@ class Integer
* @return int
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function pollardsRho(int $n, int $x = 2, int $factor = 1, int $cycleSize = 2, int $y = 2) : int
{
@ -119,7 +117,6 @@ class Integer
* @return int
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function greatestCommonDivisor(int $n, int $m) : int
{
@ -148,7 +145,6 @@ class Integer
* @throws \Exception
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function fermatFactor(int $value, int $limit = 1000000) : array
{

View File

@ -36,7 +36,6 @@ class Numbers
* @return bool
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function isPerfect(int $n) : bool
{
@ -59,7 +58,6 @@ class Numbers
* @return bool
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function isSelfdescribing(int $n) : bool
{
@ -83,7 +81,6 @@ class Numbers
* @return bool
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function isSquare(int $n) : bool
{
@ -98,7 +95,6 @@ class Numbers
* @return int
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function countTrailingZeros(int $n) : int
{

View File

@ -36,7 +36,6 @@ class Prime
* @return bool
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function isMersenne(int $n) : bool
{
@ -53,7 +52,6 @@ class Prime
* @return int
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function mersenne(int $p) : int
{
@ -69,7 +67,6 @@ class Prime
* @return bool
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function rabinTest(int $n, int $k = 10000) : bool
{
@ -124,7 +121,6 @@ class Prime
* @return int[]
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function sieveOfEratosthenes(int $n) : array
{
@ -155,7 +151,6 @@ class Prime
* @return bool
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function isPrime(int $n) : bool
{

View File

@ -37,7 +37,6 @@ class Rest
* @return string
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function request(Request $request) : string
{

View File

@ -72,7 +72,6 @@ class ActivateAbstract
* @return void
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function activateInDatabase(DatabasePool $dbPool, InfoManager $info) /* : void */
{

View File

@ -72,7 +72,6 @@ class DeactivateAbstract
* @return void
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function deactivateInDatabase(DatabasePool $dbPool, InfoManager $info) /* : void */
{

View File

@ -56,7 +56,6 @@ class InfoManager
* @param string $path Info file path
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function __construct($path)
{
@ -69,7 +68,6 @@ class InfoManager
* @return string
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function getPath() : string
{
@ -82,7 +80,6 @@ class InfoManager
* @return void
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function load() /* : void */
{
@ -99,7 +96,6 @@ class InfoManager
* @return void
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function update() /* : void */
{
@ -118,7 +114,6 @@ class InfoManager
* @param string $delim Delimiter of path
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function set(string $path, $data, string $delim = '/') /* : void */
{
@ -135,7 +130,6 @@ class InfoManager
* @return array
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function get() : array
{
@ -148,7 +142,6 @@ class InfoManager
* @return string
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function getInternalName() : string
{
@ -161,7 +154,6 @@ class InfoManager
* @return string
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function getExternalName() : string
{
@ -174,7 +166,6 @@ class InfoManager
* @return array
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function getDependencies() : array
{
@ -187,7 +178,6 @@ class InfoManager
* @return array
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function getProviding() : array
{
@ -200,7 +190,6 @@ class InfoManager
* @return string
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function getDirectory() : string
{
@ -213,7 +202,6 @@ class InfoManager
* @return string
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function getCategory() : string
{
@ -226,7 +214,6 @@ class InfoManager
* @return string
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function getVersion() : string
{
@ -239,7 +226,6 @@ class InfoManager
* @return array
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function getLoad() : array
{

View File

@ -44,7 +44,6 @@ class InstallerAbstract
* @return void
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function registerInDatabase(DatabasePool $dbPool, InfoManager $info) /* : void */
{

View File

@ -92,7 +92,6 @@ abstract class ModuleAbstract
* @param \phpOMS\ApplicationAbstract $app Application instance
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function __construct($app)
{

View File

@ -114,7 +114,6 @@ class ModuleManager
* @return array
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function getRoutedModules(Request $request) : array
{
@ -138,7 +137,6 @@ class ModuleManager
* @return array
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function getUriLoad(Request $request) : array
{
@ -190,7 +188,6 @@ class ModuleManager
* @return array
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function getLanguageFiles(Request $request) : array
{
@ -212,7 +209,6 @@ class ModuleManager
* @return array
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function getActiveModules() : array
{
@ -235,7 +231,6 @@ class ModuleManager
* @return array
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function getAllModules() : array
{
@ -266,7 +261,6 @@ class ModuleManager
* @return array
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function getAvailableModules() : array
{
@ -280,7 +274,6 @@ class ModuleManager
* @return bool
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function deactivate(string $module) : bool
{
@ -316,7 +309,6 @@ class ModuleManager
* @return bool
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function activate(string $module) : bool
{
@ -354,7 +346,6 @@ class ModuleManager
* @throws \Exception
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function reInit(string $module) : bool
{
@ -377,7 +368,6 @@ class ModuleManager
* @return bool
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function install(string $module) : bool
{
@ -431,7 +421,6 @@ class ModuleManager
* @return void
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
private function installDependencies(array $dependencies) /* : void */
{
@ -450,7 +439,6 @@ class ModuleManager
* @throws \Exception
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
private function installModule(InfoManager $info) /* : void */
{
@ -474,7 +462,6 @@ class ModuleManager
* @throws \Exception
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
private function deactivateModule(InfoManager $info) /* : void */
{
@ -498,7 +485,6 @@ class ModuleManager
* @throws \Exception
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
private function activateModule(InfoManager $info) /* : void */
{
@ -520,7 +506,6 @@ class ModuleManager
* @return InfoManager
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
private function loadInfo(string $module) : InfoManager
{
@ -542,7 +527,6 @@ class ModuleManager
* @return array
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function getInstalledModules() : array
{
@ -570,7 +554,6 @@ class ModuleManager
* @return void
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function installProviding(string $from, string $for) /* : void */
{
@ -591,7 +574,6 @@ class ModuleManager
* @throws \InvalidArgumentException
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function initModule($modules) /* : void */
{
@ -618,7 +600,6 @@ class ModuleManager
* @throws \Exception
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
private function initModuleController(string $module) /* : void */
{
@ -640,7 +621,6 @@ class ModuleManager
* @throws \Exception
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function get(string $module) : ModuleAbstract
{
@ -663,7 +643,6 @@ class ModuleManager
* @return void
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function initRequestModules(Request $request) /* : void */
{

View File

@ -63,7 +63,6 @@ class CommandManager implements \Countable
* @return void
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function attach(string $cmd, $callback, $source)
{
@ -80,7 +79,6 @@ class CommandManager implements \Countable
* @return void
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function detach(string $cmd, $source)
{
@ -100,7 +98,6 @@ class CommandManager implements \Countable
* @return mixed|bool
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function trigger(string $cmd, $conn, $para)
{
@ -117,7 +114,6 @@ class CommandManager implements \Countable
* @return int
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function count() : int
{

View File

@ -87,7 +87,6 @@ class MultiMap implements \Countable
* @return bool
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function add(array $keys, $value, bool $overwrite = true) : bool
{
@ -123,7 +122,6 @@ class MultiMap implements \Countable
* @return void
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
private function garbageCollect() /* : void */
{
@ -150,7 +148,6 @@ class MultiMap implements \Countable
* @return mixed
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function get($key)
{
@ -169,7 +166,6 @@ class MultiMap implements \Countable
* @return mixed
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
private function getSingle($key)
{
@ -184,7 +180,6 @@ class MultiMap implements \Countable
* @return mixed
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
private function getMultiple($key)
{
@ -216,7 +211,6 @@ class MultiMap implements \Countable
* @return bool
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function set($key, $value) : bool
{
@ -236,7 +230,6 @@ class MultiMap implements \Countable
* @return bool
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
private function setMultiple($key, $value) : bool
{
@ -264,7 +257,6 @@ class MultiMap implements \Countable
* @return bool
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
private function setSingle($key, $value) : bool
{
@ -285,7 +277,6 @@ class MultiMap implements \Countable
* @return bool
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function remove($key) : bool
{
@ -304,7 +295,6 @@ class MultiMap implements \Countable
* @return bool
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
private function removeMultiple($key) : bool
{
@ -331,7 +321,6 @@ class MultiMap implements \Countable
* @return bool
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
private function removeSingle($key) : bool
{
@ -359,7 +348,6 @@ class MultiMap implements \Countable
* @return bool
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function remap($old, $new) : bool
{
@ -388,7 +376,6 @@ class MultiMap implements \Countable
* @return bool
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function removeKey($key) : bool
{
@ -409,7 +396,6 @@ class MultiMap implements \Countable
* @return bool
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
private function removeKeyMultiple($key) : bool
{
@ -438,7 +424,6 @@ class MultiMap implements \Countable
* @return bool
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
private function removeKeySingle($key) : bool
{
@ -461,7 +446,6 @@ class MultiMap implements \Countable
* @return array
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function getSiblings($key) : array
{
@ -481,7 +465,6 @@ class MultiMap implements \Countable
* @return array
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function getSiblingsMultiple($key) : array
{
@ -500,7 +483,6 @@ class MultiMap implements \Countable
* @return array
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
private function getSiblingsSingle($key) : array
{
@ -525,7 +507,6 @@ class MultiMap implements \Countable
* @return array
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function keys() : array
{
@ -538,7 +519,6 @@ class MultiMap implements \Countable
* @return array
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function values() : array
{
@ -551,7 +531,6 @@ class MultiMap implements \Countable
* @return int
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function count() : int
{

View File

@ -44,7 +44,6 @@ class SystemUtils
* @return int
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getRAM() : int
{
@ -76,7 +75,6 @@ class SystemUtils
* @return int
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getRAMUsage() : int
{
@ -103,7 +101,6 @@ class SystemUtils
* @return int
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getCpuUsage() : int
{

View File

@ -131,7 +131,6 @@ abstract class C128Abstract
* @todo : add mirror parameter
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function __construct(string $content = '', int $width = 20, int $height = 20, int $orientation = OrientationType::HORIZONTAL)
{
@ -147,7 +146,6 @@ abstract class C128Abstract
* @param int $height Barcode height
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function setDimension(int $width, int $height) /* : void */
{
@ -169,7 +167,6 @@ abstract class C128Abstract
* @param int $orientation Barcode orientation
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function setOrientation(int $orientation) /* : void */
{
@ -186,7 +183,6 @@ abstract class C128Abstract
* @return string
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function getContent() : string
{
@ -199,7 +195,6 @@ abstract class C128Abstract
* @param string $content Barcode content
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function setContent(string $content) /* : void */
{
@ -212,7 +207,6 @@ abstract class C128Abstract
* @return mixed
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function get()
{
@ -227,7 +221,6 @@ abstract class C128Abstract
* @return string
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
protected function generateCodeString() : string
{
@ -258,7 +251,6 @@ abstract class C128Abstract
* @return mixed
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
protected function createImage(string $codeString, int $codeLength = 20)
{

View File

@ -91,7 +91,6 @@ class C128a extends C128Abstract
* @todo : add mirror parameter
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function __construct(string $content = '', int $size = 20, int $orientation = OrientationType::HORIZONTAL)
{
@ -106,7 +105,6 @@ class C128a extends C128Abstract
* @todo : add mirror parameter
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function setContent(string $content) /* : void */
{

View File

@ -86,7 +86,6 @@ class C128c extends C128Abstract
* @return string
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
protected function generateCodeString() : string
{

View File

@ -73,7 +73,6 @@ class C25 extends C128Abstract
* @todo : add mirror parameter
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function __construct(string $content = '', int $size = 20, int $orientation = OrientationType::HORIZONTAL)
{
@ -90,7 +89,6 @@ class C25 extends C128Abstract
* @param string $content Barcode content
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function setContent(string $content) /* : void */
{
@ -107,7 +105,6 @@ class C25 extends C128Abstract
* @return string
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
protected function generateCodeString() : string
{

View File

@ -72,7 +72,6 @@ class C39 extends C128Abstract
* @todo : add mirror parameter
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function __construct(string $content = '', int $size = 20, int $orientation = OrientationType::HORIZONTAL)
{
@ -85,7 +84,6 @@ class C39 extends C128Abstract
* @param string $content Barcode content
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function setContent(string $content) /* : void */
{
@ -98,7 +96,6 @@ class C39 extends C128Abstract
* @return string
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
protected function generateCodeString() : string
{

View File

@ -73,7 +73,6 @@ class Codebar extends C128Abstract
* @todo : add mirror parameter
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function __construct(string $content = '', int $size = 20, int $orientation = OrientationType::HORIZONTAL)
{
@ -86,7 +85,6 @@ class Codebar extends C128Abstract
* @param string $content Barcode content
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function setContent(string $content) /* : void */
{
@ -99,7 +97,6 @@ class Codebar extends C128Abstract
* @return string
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
protected function generateCodeString() : string
{

View File

@ -35,7 +35,6 @@ class CsvSettings
* @return string
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getFileDelimiter($file, int $checkLines = 2, array $delimiters = [',', '\t', ';', '|', ':']) : string
{

View File

@ -41,7 +41,6 @@ class JsonBuilder implements \Serializable
* Constructor.
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function __construct()
{
@ -53,7 +52,6 @@ class JsonBuilder implements \Serializable
* @return array
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function getJson() : array
{
@ -70,7 +68,6 @@ class JsonBuilder implements \Serializable
* @return void
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function add(string $path, $value, bool $overwrite = true) /* : void */
{
@ -85,7 +82,6 @@ class JsonBuilder implements \Serializable
* @return void
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function remove(string $path) /* : void */
{

View File

@ -57,7 +57,6 @@ class StringUtils
* @return bool The function returns true if any of the needles is part of the haystack, false otherwise.
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function contains(string $haystack, array $needles) : bool
{
@ -85,7 +84,6 @@ class StringUtils
* @return bool The function returns true if any of the needles is part of the haystack, false otherwise.
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function mb_contains(string $haystack, array $needles) : bool
{
@ -114,7 +112,6 @@ class StringUtils
* @return bool The function returns true if any of the needles is at the end of the haystack, false otherwise.
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function endsWith(string $haystack, $needles) : bool
{
@ -147,7 +144,6 @@ class StringUtils
* @return bool The function returns true if any of the needles is at the beginning of the haystack, false otherwise.
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function startsWith(string $haystack, $needles) : bool
{
@ -176,7 +172,6 @@ class StringUtils
* @return bool The function returns true if any of the needles is at the beginning of the haystack, false otherwise.
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function mb_startsWith(string $haystack, $needles) : bool
{
@ -209,7 +204,6 @@ class StringUtils
* @return bool The function returns true if any of the needles is at the end of the haystack, false otherwise.
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function mb_endsWith(string $haystack, $needles) : bool
{
@ -234,7 +228,6 @@ class StringUtils
* @return string Multi byte string with first character as upper case.
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function mb_ucfirst(string $string) : string
{
@ -253,7 +246,6 @@ class StringUtils
* @return string Multi byte string with first character as lower case.
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function mb_lcfirst(string $string) : string
{
@ -273,7 +265,6 @@ class StringUtils
* @return string Trimmed multi byte string.
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function mb_trim(string $string, string $charlist = ' ') : string
{
@ -295,7 +286,6 @@ class StringUtils
* @return string Trimmed multi byte string.
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function mb_rtrim(string $string, string $charlist = ' ') : string
{
@ -317,7 +307,6 @@ class StringUtils
* @return string Trimmed multi byte string.
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function mb_ltrim(string $string, string $charlist = ' ') : string
{
@ -342,7 +331,6 @@ class StringUtils
* @return int The amount of repeating occurences at the beginning of the string.
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function countCharacterFromStart(string $string, string $character) : int
{

View File

@ -42,7 +42,6 @@ class Cron extends SchedulerAbstract
* @return array
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function run(string $cmd) : array
{

View File

@ -105,7 +105,6 @@ abstract class SchedulerAbstract
* @return void
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function add(TaskAbstract $task) /* : void */
{
@ -120,7 +119,6 @@ abstract class SchedulerAbstract
* @return bool
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function remove(string $id) : bool
{
@ -141,7 +139,6 @@ abstract class SchedulerAbstract
* @return TaskAbstract|null
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function get(string $id)
{
@ -154,7 +151,6 @@ abstract class SchedulerAbstract
* @return TaskAbstract[]
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function getAll() : array
{
@ -169,7 +165,6 @@ abstract class SchedulerAbstract
* @return void
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public function set(TaskAbstract $task) /* : void */
{
@ -182,7 +177,6 @@ abstract class SchedulerAbstract
* @return void
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
abstract public function save() /* : void */;
}

View File

@ -48,7 +48,6 @@ class TaskScheduler extends SchedulerAbstract
* @throws \Exception
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
private function run(string $cmd) : string
{
@ -85,7 +84,6 @@ class TaskScheduler extends SchedulerAbstract
* @return string Normalized string for parsing
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
private function normalize(string $raw) : string
{
@ -100,7 +98,6 @@ class TaskScheduler extends SchedulerAbstract
* @return TaskAbstract Parsed job
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
private function parseJobList(array $jobData) : TaskAbstract
{

View File

@ -37,7 +37,6 @@ interface ValidatorInterface
* @return bool
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function isValid($value);
@ -47,7 +46,6 @@ interface ValidatorInterface
* @return string
*
* @since 1.0.0
* @author Dennis Eichhorn
*/
public static function getMessage();
}

View File

@ -52,8 +52,7 @@ abstract class ViewAbstract implements \Serializable
/**
* Constructor.
*
* @since 1.0.0
* @author Dennis Eichhorn <d.eichhorn@oms.com>
* @since 1.0.0 <d.eichhorn@oms.com>
*/
public function __construct()
{
@ -67,8 +66,7 @@ abstract class ViewAbstract implements \Serializable
*
* @return int
*
* @since 1.0.0
* @author Dennis Eichhorn <d.eichhorn@oms.com>
* @since 1.0.0 <d.eichhorn@oms.com>
*/
private static function viewSort(array $a, array $b) : int
{
@ -84,8 +82,7 @@ abstract class ViewAbstract implements \Serializable
*
* @return string
*
* @since 1.0.0
* @author Dennis Eichhorn <d.eichhorn@oms.com>
* @since 1.0.0 <d.eichhorn@oms.com>
*/
public function getTemplate() : string
{
@ -99,8 +96,7 @@ abstract class ViewAbstract implements \Serializable
*
* @return void
*
* @since 1.0.0
* @author Dennis Eichhorn <d.eichhorn@oms.com>
* @since 1.0.0 <d.eichhorn@oms.com>
*/
public function setTemplate(string $template) /* : void */
{
@ -110,8 +106,7 @@ abstract class ViewAbstract implements \Serializable
/**
* @return View[]
*
* @since 1.0.0
* @author Dennis Eichhorn <d.eichhorn@oms.com>
* @since 1.0.0 <d.eichhorn@oms.com>
*/
public function getViews() : array
{
@ -123,8 +118,7 @@ abstract class ViewAbstract implements \Serializable
*
* @return false|View
*
* @since 1.0.0
* @author Dennis Eichhorn <d.eichhorn@oms.com>
* @since 1.0.0 <d.eichhorn@oms.com>
*/
public function getView($id)
{
@ -142,8 +136,7 @@ abstract class ViewAbstract implements \Serializable
*
* @return bool
*
* @since 1.0.0
* @author Dennis Eichhorn <d.eichhorn@oms.com>
* @since 1.0.0 <d.eichhorn@oms.com>
*/
public function removeView(string $id) : bool
{
@ -165,8 +158,7 @@ abstract class ViewAbstract implements \Serializable
*
* @return void
*
* @since 1.0.0
* @author Dennis Eichhorn <d.eichhorn@oms.com>
* @since 1.0.0 <d.eichhorn@oms.com>
*/
public function editView(string $id, View $view, $order = null) /* : void */
{
@ -183,8 +175,7 @@ abstract class ViewAbstract implements \Serializable
*
* @return void
*
* @since 1.0.0
* @author Dennis Eichhorn <d.eichhorn@oms.com>
* @since 1.0.0 <d.eichhorn@oms.com>
*/
public function addView(string $id, View $view, int $order = 0, bool $overwrite = true) : bool
{
@ -206,8 +197,7 @@ abstract class ViewAbstract implements \Serializable
*
* @return string|array
*
* @since 1.0.0
* @author Dennis Eichhorn <d.eichhorn@oms.com>
* @since 1.0.0 <d.eichhorn@oms.com>
*/
public function serialize()
{
@ -223,8 +213,7 @@ abstract class ViewAbstract implements \Serializable
*
* @return array
*
* @since 1.0.0
* @author Dennis Eichhorn <d.eichhorn@oms.com>
* @since 1.0.0 <d.eichhorn@oms.com>
*/
public function toArray() : array
{
@ -246,8 +235,7 @@ abstract class ViewAbstract implements \Serializable
*
* @return string
*
* @since 1.0.0
* @author Dennis Eichhorn <d.eichhorn@oms.com>
* @since 1.0.0 <d.eichhorn@oms.com>
*/
public function render(...$data) : string
{
@ -276,8 +264,7 @@ abstract class ViewAbstract implements \Serializable
*
* @return void
*
* @since 1.0.0
* @author Dennis Eichhorn <d.eichhorn@oms.com>
* @since 1.0.0 <d.eichhorn@oms.com>
*/
public function unserialize($raw)
{