diff --git a/src/Core/Application/ServiceAwareInterface.php b/src/Core/Application/ServiceAwareInterface.php index 669a03a7..96345b22 100644 --- a/src/Core/Application/ServiceAwareInterface.php +++ b/src/Core/Application/ServiceAwareInterface.php @@ -11,7 +11,7 @@ /** * Interface ServiceAwareInterface * - * @since __DEPLOY_VERSION__ + * @since 3.5.5 */ interface ServiceAwareInterface { diff --git a/src/Core/Application/ServiceAwareTrait.php b/src/Core/Application/ServiceAwareTrait.php index 246a332c..400000ef 100644 --- a/src/Core/Application/ServiceAwareTrait.php +++ b/src/Core/Application/ServiceAwareTrait.php @@ -13,7 +13,7 @@ /** * The ServiceAwareTrait class. * - * @since __DEPLOY_VERSION__ + * @since 3.5.5 */ trait ServiceAwareTrait { diff --git a/src/Core/Asset/AbstractScript.php b/src/Core/Asset/AbstractScript.php index d6342b56..251ee826 100644 --- a/src/Core/Asset/AbstractScript.php +++ b/src/Core/Asset/AbstractScript.php @@ -224,7 +224,7 @@ function ($interface) { * * @return RawWrapper * - * @since __DEPLOY_VERSION__ + * @since 3.5.5 */ protected static function raw($value): RawWrapper { diff --git a/src/Core/Asset/AssetManager.php b/src/Core/Asset/AssetManager.php index e65f7543..95260acc 100644 --- a/src/Core/Asset/AssetManager.php +++ b/src/Core/Asset/AssetManager.php @@ -727,7 +727,7 @@ public function resolveAlias($uri) * * @return array|null * - * @since __DEPLOY_VERSION__ + * @since 3.5.5 */ public function resolveRawAlias(string $uri): ?array { diff --git a/src/Core/Console/CoreConsole.php b/src/Core/Console/CoreConsole.php index bab03468..e4bdbb77 100644 --- a/src/Core/Console/CoreConsole.php +++ b/src/Core/Console/CoreConsole.php @@ -280,7 +280,7 @@ public function getPackage($name = null) * * @return int * - * @since __DEPLOY_VERSION__ + * @since 3.5.5 */ public function runProcess(string $script, ?string $input = null): int { diff --git a/src/Core/Ioc.php b/src/Core/Ioc.php index d5b1d2a8..4e0b598a 100644 --- a/src/Core/Ioc.php +++ b/src/Core/Ioc.php @@ -373,7 +373,7 @@ public static function make(string $key, array $args = [], bool $protected = fal * * @return mixed * - * @since __DEPLOY_VERSION__ + * @since 3.5.5 */ public static function service(string $class, bool $forceNew = false) { diff --git a/src/Core/Router/RouteBuilderTrait.php b/src/Core/Router/RouteBuilderTrait.php index 6ee7e4f1..a4fe452c 100644 --- a/src/Core/Router/RouteBuilderTrait.php +++ b/src/Core/Router/RouteBuilderTrait.php @@ -115,7 +115,7 @@ public function escape($text) * * @return bool * - * @since __DEPLOY_VERSION__ + * @since 3.5.5 */ public function getMute(): bool { @@ -129,7 +129,7 @@ public function getMute(): bool * * @return static Return self to support chaining. * - * @since __DEPLOY_VERSION__ + * @since 3.5.5 */ public function mute(bool $mute) { diff --git a/src/Core/Router/RouteString.php b/src/Core/Router/RouteString.php index b3e756de..5a61220c 100644 --- a/src/Core/Router/RouteString.php +++ b/src/Core/Router/RouteString.php @@ -203,7 +203,7 @@ public function var($name, $value) * * @return static * - * @since __DEPLOY_VERSION__ + * @since 3.5.5 */ public function delVar(string $name) { diff --git a/src/Core/Schedule/Schedule.php b/src/Core/Schedule/Schedule.php index 4ba4e4bd..c3a2edc8 100644 --- a/src/Core/Schedule/Schedule.php +++ b/src/Core/Schedule/Schedule.php @@ -118,7 +118,7 @@ public function perMinutes(int $minutes, $task): ScheduleEvent * @throws \ReflectionException * @throws \Windwalker\DI\Exception\DependencyResolutionException * - * @since __DEPLOY_VERSION__ + * @since 3.5.5 */ public function perHours(int $hours, $task): ScheduleEvent { @@ -154,7 +154,7 @@ public function hourlyAt(int $minute, $task): ScheduleEvent * @throws \ReflectionException * @throws \Windwalker\DI\Exception\DependencyResolutionException * - * @since __DEPLOY_VERSION__ + * @since 3.5.5 */ public function perDays(int $days, $task): ScheduleEvent { @@ -172,7 +172,7 @@ public function perDays(int $days, $task): ScheduleEvent * @throws \ReflectionException * @throws \Windwalker\DI\Exception\DependencyResolutionException * - * @since __DEPLOY_VERSION__ + * @since 3.5.5 */ public function dailyAt(int $hour, $task): ScheduleEvent { @@ -190,7 +190,7 @@ public function dailyAt(int $hour, $task): ScheduleEvent * @throws \ReflectionException * @throws \Windwalker\DI\Exception\DependencyResolutionException * - * @since __DEPLOY_VERSION__ + * @since 3.5.5 */ public function perMonths(int $months, $task): ScheduleEvent { @@ -208,7 +208,7 @@ public function perMonths(int $months, $task): ScheduleEvent * @throws \ReflectionException * @throws \Windwalker\DI\Exception\DependencyResolutionException * - * @since __DEPLOY_VERSION__ + * @since 3.5.5 */ public function monthlyAt(int $day, $task): ScheduleEvent { @@ -226,7 +226,7 @@ public function monthlyAt(int $day, $task): ScheduleEvent * @throws \ReflectionException * @throws \Windwalker\DI\Exception\DependencyResolutionException * - * @since __DEPLOY_VERSION__ + * @since 3.5.5 */ public function yearlyAt(int $month, $task): ScheduleEvent { diff --git a/src/Core/Utilities/helpers.php b/src/Core/Utilities/helpers.php index 7248d620..a572fafc 100644 --- a/src/Core/Utilities/helpers.php +++ b/src/Core/Utilities/helpers.php @@ -272,7 +272,7 @@ function hs($elements = [], $strict = false): HtmlElements * * @return DI\ClassMeta * - * @since __DEPLOY_VERSION__ + * @since 3.5.5 */ function create_obj($class, array $args = []): ClassMeta { @@ -286,7 +286,7 @@ function create_obj($class, array $args = []): ClassMeta * * @return RawWrapper * - * @since __DEPLOY_VERSION__ + * @since 3.5.5 */ function raw($value): RawWrapper {