Remove outdated @since annotations

This commit is contained in:
Marcus Moore 2024-10-22 17:04:23 -07:00
parent 37d65dac3d
commit c313a78c3c
No known key found for this signature in database
2 changed files with 0 additions and 7 deletions

View file

@ -43,7 +43,6 @@ class ReportTemplate extends Model
/** /**
* Establishes the report template -> creator relationship. * Establishes the report template -> creator relationship.
* *
* @since [v6.2.4]
*/ */
public function user(): BelongsTo public function user(): BelongsTo
{ {
@ -56,7 +55,6 @@ class ReportTemplate extends Model
* @param string $fieldName * @param string $fieldName
* @param string $fallbackValue The value to return if the report template is not saved yet. * @param string $fallbackValue The value to return if the report template is not saved yet.
* *
* @since [v6.2.4]
*/ */
public function checkmarkValue(string $fieldName, string $fallbackValue = '1'): string public function checkmarkValue(string $fieldName, string $fallbackValue = '1'): string
{ {
@ -79,7 +77,6 @@ class ReportTemplate extends Model
* @param string $value The value to check against. * @param string $value The value to check against.
* @param bool $isDefault Whether the radio input being checked is the default. * @param bool $isDefault Whether the radio input being checked is the default.
* *
* @since [v6.2.4]
*/ */
public function radioValue(string $fieldName, string $value, bool $isDefault = false): bool public function radioValue(string $fieldName, string $value, bool $isDefault = false): bool
{ {
@ -108,7 +105,6 @@ class ReportTemplate extends Model
* *
* @return mixed|null * @return mixed|null
* *
* @since [v6.2.4]
*/ */
public function selectValue(string $fieldName, string $model = null) public function selectValue(string $fieldName, string $model = null)
{ {
@ -146,7 +142,6 @@ class ReportTemplate extends Model
* *
* @return iterable * @return iterable
* *
* @since [v6.2.4]
*/ */
public function selectValues(string $fieldName, string $model = null): iterable public function selectValues(string $fieldName, string $model = null): iterable
{ {
@ -178,7 +173,6 @@ class ReportTemplate extends Model
* *
* @return string * @return string
* *
* @since [v6.2.4]
*/ */
public function textValue(string $fieldName): string public function textValue(string $fieldName): string
{ {

View file

@ -364,7 +364,6 @@ class User extends SnipeModel implements AuthenticatableContract, AuthorizableCo
/** /**
* Establishes the user -> reportTemplates relationship * Establishes the user -> reportTemplates relationship
* *
* @since [v6.2.4]
*/ */
public function reportTemplates(): HasMany public function reportTemplates(): HasMany
{ {