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
const foo = {'bar': 123}; |
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
PHPUnit 8.5.3 by Sebastian Bergmann and contributors. | |
.. | |
. | |
. | |
. | |
. 6 / 6 (100%) |
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
PHPUnit 8.5.3 by Sebastian Bergmann and contributors. | |
............................................................... 63 / 495 ( 12%) | |
............................................................... 126 / 495 ( 25%) | |
............................................................... 189 / 495 ( 38%) | |
............................................................... 252 / 495 ( 50%) | |
............................................................... 315 / 495 ( 63%) | |
............................................................... 378 / 495 ( 76%) | |
............................................................... 441 / 495 ( 89%) | |
...................................................... 495 / 495 (100%) |
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 | |
// inside migration file | |
public function up() | |
{ | |
// Create a table here | |
// Call seeder | |
Artisan::call('db:seed', [ | |
'--class' => 'SampleDataSeeder', |
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 | |
/** @test */ | |
public function it_fails_attach_volume_to_instance_if_volume_is_not_in_provisioning_state() { | |
Event::fake([JobFailed::class]); | |
$queue = Queue::getFacadeRoot(); | |
Queue::fake(); | |
$volume = VolumeFactory::make()->pending()->create(); |
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
"require": { | |
"php" : "^7.2.5", | |
"illuminate/auth": "^5.8|^6.0|^7.0", | |
"illuminate/container": "^5.8|^6.0|^7.0", | |
"illuminate/contracts": "^5.8|^6.0|^7.0", | |
"illuminate/database": "^5.8|^6.0|^7.0" | |
}, |
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 | |
'redirect' => [ | |
'/old' => 'https://some-external-url.com', | |
'/old-slug' => '/new-slug' | |
], |
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
<div class="transform scale-50 rotate-45 translate-x-full origin-center"></div> |
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
<div class="grid grid-cols-2 lg:grid-cols-4 gap-6 w-full"> | |
<div class="col-span-1 bg-red-500">Row 1, Column 1</div> | |
<div class="col-span-2 bg-blue-500">Row 1, Column 2, Span 2</div> | |
<div class="col-start-1 col-end-2 lg:col-start-2 lg:col-end-4 bg-green-500">Row 2, Start 2, End 4</div> | |
<div class="col-start-1 col-end-2 lg:col-end-4 bg-blue-500">Row 3, Start 1, End 4</div> | |
<div class="col-start-2 col-end-2 lg:col-end-5 bg-red-500">Row 4, Start 2, End 5</div> | |
</div> |
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
theme('spacing') |