I hereby claim:
- I am stidges on github.
- I am stidges (https://keybase.io/stidges) on keybase.
- I have a public key ASCfoJPTZueL1UgrbhO7O8vSDv5UEqmtxxAdhaQpnOeorAo
To claim this, I am signing this object:
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>Ansi 0 Color</key> | |
| <dict> | |
| <key>Alpha Component</key> | |
| <real>1</real> | |
| <key>Blue Component</key> | |
| <real>0.17254902422428131</real> |
| <?php | |
| namespace App\Http\Requests; | |
| use Illuminate\Foundation\Http\FormRequest; | |
| use Illuminate\Validation\Validator; | |
| abstract class Request extends FormRequest | |
| { | |
| /** |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| namespace Tests; | |
| use Illuminate\Foundation\Testing\TestResponse; | |
| use Illuminate\Foundation\Testing\TestCase as BaseTestCase; | |
| use PHPUnit\Framework\Assert; | |
| abstract class TestCase extends BaseTestCase | |
| { |
| <?php | |
| # app/Validation/AllowedUsernameValidator.php | |
| namespace App\Validation; | |
| use Illuminate\Filesystem\Filesystem; | |
| use Illuminate\Routing\Router; | |
| use Illuminate\Config\Repository; |
| <?php | |
| namespace App\Http\Controllers; | |
| use App\Post; | |
| use Illuminate\Http\Request; | |
| class PostsController extends Controller | |
| { | |
| public function index(Request $request) |
| <?php | |
| class CacheBustingLaravelValetDriver extends LaravelValetDriver | |
| { | |
| public function isStaticFile($sitePath, $siteName, $uri) | |
| { | |
| $result = parent::isStaticFile($sitePath, $siteName, $uri); | |
| if ($result !== false) { | |
| return $result; |
| <?php | |
| namespace Acme\Html; | |
| use Illuminate\Html\FormBuilder as IlluminateFormBuilder; | |
| class FormBuilder extends IlluminateFormBuilder { | |
| /** | |
| * An array containing the currently opened form groups. |
| body { | |
| background-color: #d6e0e6; | |
| } | |
| .spinner { | |
| position: absolute; | |
| top: 50%; | |
| left: 50%; | |
| margin-left: -21.5px; | |
| margin-top: -21.5px; |