From c05086c2336ac4066793aff431675a2dab8a952d Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Mon, 24 Jul 2017 17:51:37 +0200 Subject: [PATCH] Remove author --- Business/Sales/MarketShareEstimation.php | 2 - Console/CommandManager.php | 4 -- Log/FileLogger.php | 17 ----- Math/Finance/FinanceFormulas.php | 83 ------------------------ Math/Finance/Loan.php | 6 -- Math/Finance/StockBonds.php | 22 ------- Math/Number/Integer.php | 4 -- Math/Number/Numbers.php | 4 -- Math/Number/Prime.php | 5 -- Message/Http/Rest.php | 1 - Module/ActivateAbstract.php | 1 - Module/DeactivateAbstract.php | 1 - Module/InfoManager.php | 14 ---- Module/InstallerAbstract.php | 1 - Module/ModuleAbstract.php | 1 - Module/ModuleManager.php | 21 ------ Socket/CommandManager.php | 4 -- Stdlib/Map/MultiMap.php | 21 ------ System/SystemUtils.php | 3 - Utils/Barcode/C128Abstract.php | 8 --- Utils/Barcode/C128a.php | 2 - Utils/Barcode/C128c.php | 1 - Utils/Barcode/C25.php | 3 - Utils/Barcode/C39.php | 3 - Utils/Barcode/Codebar.php | 3 - Utils/IO/Csv/CsvSettings.php | 1 - Utils/JsonBuilder.php | 4 -- Utils/StringUtils.php | 12 ---- Utils/TaskSchedule/Cron.php | 1 - Utils/TaskSchedule/SchedulerAbstract.php | 6 -- Utils/TaskSchedule/TaskScheduler.php | 3 - Validation/ValidatorInterface.php | 2 - Views/ViewAbstract.php | 39 ++++------- 33 files changed, 13 insertions(+), 290 deletions(-) diff --git a/Business/Sales/MarketShareEstimation.php b/Business/Sales/MarketShareEstimation.php index ef0d8a831..309b83618 100644 --- a/Business/Sales/MarketShareEstimation.php +++ b/Business/Sales/MarketShareEstimation.php @@ -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 { diff --git a/Console/CommandManager.php b/Console/CommandManager.php index ccfe9f9aa..680a893c0 100644 --- a/Console/CommandManager.php +++ b/Console/CommandManager.php @@ -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 { diff --git a/Log/FileLogger.php b/Log/FileLogger.php index a64ba38c9..a0d5252fd 100644 --- a/Log/FileLogger.php +++ b/Log/FileLogger.php @@ -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 */ { diff --git a/Math/Finance/FinanceFormulas.php b/Math/Finance/FinanceFormulas.php index cbce240c7..dec6931fb 100644 --- a/Math/Finance/FinanceFormulas.php +++ b/Math/Finance/FinanceFormulas.php @@ -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 { diff --git a/Math/Finance/Loan.php b/Math/Finance/Loan.php index 8d4d390db..47115e999 100644 --- a/Math/Finance/Loan.php +++ b/Math/Finance/Loan.php @@ -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 { diff --git a/Math/Finance/StockBonds.php b/Math/Finance/StockBonds.php index 4e9c77432..6c1b1e236 100644 --- a/Math/Finance/StockBonds.php +++ b/Math/Finance/StockBonds.php @@ -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 { diff --git a/Math/Number/Integer.php b/Math/Number/Integer.php index 19f4f97ca..afc1e2fbe 100644 --- a/Math/Number/Integer.php +++ b/Math/Number/Integer.php @@ -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 { diff --git a/Math/Number/Numbers.php b/Math/Number/Numbers.php index d19ea6689..23f0866f9 100644 --- a/Math/Number/Numbers.php +++ b/Math/Number/Numbers.php @@ -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 { diff --git a/Math/Number/Prime.php b/Math/Number/Prime.php index d84d33b61..56b456563 100644 --- a/Math/Number/Prime.php +++ b/Math/Number/Prime.php @@ -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 { diff --git a/Message/Http/Rest.php b/Message/Http/Rest.php index e625ec079..7cecf4a95 100644 --- a/Message/Http/Rest.php +++ b/Message/Http/Rest.php @@ -37,7 +37,6 @@ class Rest * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function request(Request $request) : string { diff --git a/Module/ActivateAbstract.php b/Module/ActivateAbstract.php index 15a9306bf..063d4f5ec 100644 --- a/Module/ActivateAbstract.php +++ b/Module/ActivateAbstract.php @@ -72,7 +72,6 @@ class ActivateAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function activateInDatabase(DatabasePool $dbPool, InfoManager $info) /* : void */ { diff --git a/Module/DeactivateAbstract.php b/Module/DeactivateAbstract.php index 659a254e1..578df49ca 100644 --- a/Module/DeactivateAbstract.php +++ b/Module/DeactivateAbstract.php @@ -72,7 +72,6 @@ class DeactivateAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function deactivateInDatabase(DatabasePool $dbPool, InfoManager $info) /* : void */ { diff --git a/Module/InfoManager.php b/Module/InfoManager.php index 7c676fc60..d2a7baee6 100644 --- a/Module/InfoManager.php +++ b/Module/InfoManager.php @@ -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 { diff --git a/Module/InstallerAbstract.php b/Module/InstallerAbstract.php index 1f220d97a..72e4e2f46 100644 --- a/Module/InstallerAbstract.php +++ b/Module/InstallerAbstract.php @@ -44,7 +44,6 @@ class InstallerAbstract * @return void * * @since 1.0.0 - * @author Dennis Eichhorn */ public static function registerInDatabase(DatabasePool $dbPool, InfoManager $info) /* : void */ { diff --git a/Module/ModuleAbstract.php b/Module/ModuleAbstract.php index 699b2de70..c3e71ef2a 100644 --- a/Module/ModuleAbstract.php +++ b/Module/ModuleAbstract.php @@ -92,7 +92,6 @@ abstract class ModuleAbstract * @param \phpOMS\ApplicationAbstract $app Application instance * * @since 1.0.0 - * @author Dennis Eichhorn */ public function __construct($app) { diff --git a/Module/ModuleManager.php b/Module/ModuleManager.php index bcbc6ae8f..7a1aa4410 100644 --- a/Module/ModuleManager.php +++ b/Module/ModuleManager.php @@ -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 */ { diff --git a/Socket/CommandManager.php b/Socket/CommandManager.php index f53104d05..a731aa3da 100644 --- a/Socket/CommandManager.php +++ b/Socket/CommandManager.php @@ -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 { diff --git a/Stdlib/Map/MultiMap.php b/Stdlib/Map/MultiMap.php index 864d19f3a..2ce61b64f 100644 --- a/Stdlib/Map/MultiMap.php +++ b/Stdlib/Map/MultiMap.php @@ -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 { diff --git a/System/SystemUtils.php b/System/SystemUtils.php index fac52c2b4..7ab5c9f3e 100644 --- a/System/SystemUtils.php +++ b/System/SystemUtils.php @@ -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 { diff --git a/Utils/Barcode/C128Abstract.php b/Utils/Barcode/C128Abstract.php index bfff4b358..634f3cd21 100644 --- a/Utils/Barcode/C128Abstract.php +++ b/Utils/Barcode/C128Abstract.php @@ -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) { diff --git a/Utils/Barcode/C128a.php b/Utils/Barcode/C128a.php index 7c0356c22..587231700 100644 --- a/Utils/Barcode/C128a.php +++ b/Utils/Barcode/C128a.php @@ -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 */ { diff --git a/Utils/Barcode/C128c.php b/Utils/Barcode/C128c.php index 511d8e41e..4819e4ddd 100644 --- a/Utils/Barcode/C128c.php +++ b/Utils/Barcode/C128c.php @@ -86,7 +86,6 @@ class C128c extends C128Abstract * @return string * * @since 1.0.0 - * @author Dennis Eichhorn */ protected function generateCodeString() : string { diff --git a/Utils/Barcode/C25.php b/Utils/Barcode/C25.php index 574097846..c7467a93c 100644 --- a/Utils/Barcode/C25.php +++ b/Utils/Barcode/C25.php @@ -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 { diff --git a/Utils/Barcode/C39.php b/Utils/Barcode/C39.php index 69ebdb1fb..815dec010 100644 --- a/Utils/Barcode/C39.php +++ b/Utils/Barcode/C39.php @@ -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 { diff --git a/Utils/Barcode/Codebar.php b/Utils/Barcode/Codebar.php index 0084208dd..ccdeae197 100644 --- a/Utils/Barcode/Codebar.php +++ b/Utils/Barcode/Codebar.php @@ -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 { diff --git a/Utils/IO/Csv/CsvSettings.php b/Utils/IO/Csv/CsvSettings.php index 3a85d9645..a3dc78179 100644 --- a/Utils/IO/Csv/CsvSettings.php +++ b/Utils/IO/Csv/CsvSettings.php @@ -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 { diff --git a/Utils/JsonBuilder.php b/Utils/JsonBuilder.php index bd277c6ee..0f3dcbad5 100644 --- a/Utils/JsonBuilder.php +++ b/Utils/JsonBuilder.php @@ -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 */ { diff --git a/Utils/StringUtils.php b/Utils/StringUtils.php index c2e3ce9ef..e46e8f2a9 100644 --- a/Utils/StringUtils.php +++ b/Utils/StringUtils.php @@ -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 { diff --git a/Utils/TaskSchedule/Cron.php b/Utils/TaskSchedule/Cron.php index 9dc00af64..475b59a80 100644 --- a/Utils/TaskSchedule/Cron.php +++ b/Utils/TaskSchedule/Cron.php @@ -42,7 +42,6 @@ class Cron extends SchedulerAbstract * @return array * * @since 1.0.0 - * @author Dennis Eichhorn */ public function run(string $cmd) : array { diff --git a/Utils/TaskSchedule/SchedulerAbstract.php b/Utils/TaskSchedule/SchedulerAbstract.php index d1b0f1df7..c1a0da212 100644 --- a/Utils/TaskSchedule/SchedulerAbstract.php +++ b/Utils/TaskSchedule/SchedulerAbstract.php @@ -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 */; } diff --git a/Utils/TaskSchedule/TaskScheduler.php b/Utils/TaskSchedule/TaskScheduler.php index 15cb82000..65d3fba84 100644 --- a/Utils/TaskSchedule/TaskScheduler.php +++ b/Utils/TaskSchedule/TaskScheduler.php @@ -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 { diff --git a/Validation/ValidatorInterface.php b/Validation/ValidatorInterface.php index 4af491a32..92f90c26c 100644 --- a/Validation/ValidatorInterface.php +++ b/Validation/ValidatorInterface.php @@ -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(); } diff --git a/Views/ViewAbstract.php b/Views/ViewAbstract.php index 9a6362266..42f630d8b 100644 --- a/Views/ViewAbstract.php +++ b/Views/ViewAbstract.php @@ -52,8 +52,7 @@ abstract class ViewAbstract implements \Serializable /** * Constructor. * - * @since 1.0.0 - * @author Dennis Eichhorn + * @since 1.0.0 */ public function __construct() { @@ -67,8 +66,7 @@ abstract class ViewAbstract implements \Serializable * * @return int * - * @since 1.0.0 - * @author Dennis Eichhorn + * @since 1.0.0 */ 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 + * @since 1.0.0 */ public function getTemplate() : string { @@ -99,8 +96,7 @@ abstract class ViewAbstract implements \Serializable * * @return void * - * @since 1.0.0 - * @author Dennis Eichhorn + * @since 1.0.0 */ public function setTemplate(string $template) /* : void */ { @@ -110,8 +106,7 @@ abstract class ViewAbstract implements \Serializable /** * @return View[] * - * @since 1.0.0 - * @author Dennis Eichhorn + * @since 1.0.0 */ public function getViews() : array { @@ -123,8 +118,7 @@ abstract class ViewAbstract implements \Serializable * * @return false|View * - * @since 1.0.0 - * @author Dennis Eichhorn + * @since 1.0.0 */ public function getView($id) { @@ -142,8 +136,7 @@ abstract class ViewAbstract implements \Serializable * * @return bool * - * @since 1.0.0 - * @author Dennis Eichhorn + * @since 1.0.0 */ public function removeView(string $id) : bool { @@ -165,8 +158,7 @@ abstract class ViewAbstract implements \Serializable * * @return void * - * @since 1.0.0 - * @author Dennis Eichhorn + * @since 1.0.0 */ 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 + * @since 1.0.0 */ 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 + * @since 1.0.0 */ public function serialize() { @@ -223,8 +213,7 @@ abstract class ViewAbstract implements \Serializable * * @return array * - * @since 1.0.0 - * @author Dennis Eichhorn + * @since 1.0.0 */ public function toArray() : array { @@ -246,8 +235,7 @@ abstract class ViewAbstract implements \Serializable * * @return string * - * @since 1.0.0 - * @author Dennis Eichhorn + * @since 1.0.0 */ public function render(...$data) : string { @@ -276,8 +264,7 @@ abstract class ViewAbstract implements \Serializable * * @return void * - * @since 1.0.0 - * @author Dennis Eichhorn + * @since 1.0.0 */ public function unserialize($raw) {