Skip to content

Commit

Permalink
used attribute Deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
dg committed Dec 15, 2024
1 parent 5c36fad commit 5cf6bbb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/CommandLine/Parser.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,22 +24,22 @@ class Parser
Normalizer = 'normalizer',
Default = 'default';

/** @deprecated use Parser::Argument */
#[\Deprecated('use Parser::Argument')]
public const ARGUMENT = self::Argument;

/** @deprecated use Parser::Optional */
#[\Deprecated('use Parser::Optional')]
public const OPTIONAL = self::Optional;

/** @deprecated use Parser::Repeatable */
#[\Deprecated('use Parser::Repeatable')]
public const REPEATABLE = self::Repeatable;

/** @deprecated use Parser::Enum */
#[\Deprecated('use Parser::Enum')]
public const ENUM = self::Enum;

/** @deprecated use Parser::Realpath */
#[\Deprecated('use Parser::Realpath')]
public const REALPATH = self::RealPath;

/** @deprecated use Parser::Default */
#[\Deprecated('use Parser::Default')]
public const VALUE = self::Default;


Expand Down

0 comments on commit 5cf6bbb

Please sign in to comment.