This file contains hidden or 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 | |
| use Phulp; | |
| Phulp\Phulp::task('default', function (Phulp\Builder $b) { | |
| $b->start(['clear']) | |
| ->src(['src/'], '/php$/', false) | |
| ->pipe(function() { | |
| 'xxxxxx'; | |
| }); |
This file contains hidden or 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\Exceptions; | |
| use Exception; | |
| use Illuminate\Database\Eloquent\ModelNotFoundException; | |
| use Symfony\Component\HttpKernel\Exception\HttpException; | |
| use Illuminate\Http\Exception\PostTooLargeException; | |
| use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; | |
| use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; |
This file contains hidden or 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; | |
| use App\Http\Requests\Request; | |
| class StoreRequest extends Request | |
| { | |
| public function authorize() | |
| { |
This file contains hidden or 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 | |
| interface Model_Interface | |
| { | |
| } | |
| class Model_Cliente implements Model_Interface | |
| { |