Skip to content

Instantly share code, notes, and snippets.

View raank's full-sized avatar

Felipe Rank raank

  • Self-Employeer
  • SC - BR
View GitHub Profile
<?php
namespace App\Models;
class User extends \Framework\Package\Model
{
/**
* The identification of this resource.
*
* @var integer
<?php
namespace App\Models;
/**
* @OA\Schema(
* schema="User",
* type="object",
* description="Schema of Model User",
* @OA\Property(
@raank
raank / install-pre-commit.sh
Last active September 2, 2021 21:33
Instalador do Pre-Commit
#!/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
##########