This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Models; | |
class User extends \Framework\Package\Model | |
{ | |
/** | |
* The identification of this resource. | |
* | |
* @var integer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Models; | |
/** | |
* @OA\Schema( | |
* schema="User", | |
* type="object", | |
* description="Schema of Model User", | |
* @OA\Property( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
########## | |
# PHP STAN | |
########## | |
curl -OL https://github.com/phpstan/phpstan/releases/download/0.12.98/phpstan.phar | |
sudo chmod a+x phpstan.phar | |
sudo mv phpstan.phar /usr/local/bin/phpstan | |
########## |
OlderNewer