Advertisement
vitozy

PHP 8 Attributes (create)

Oct 9th, 2020
1,072
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. namespace App\Attributes;
  2.  
  3. #[Attribute]
  4. class Deprecated
  5. {
  6.     public string $comment;
  7.  
  8.     public function __construct(string $comment)
  9.     {
  10.         $this->comment = $comment;
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement