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
{ | |
"editor.fontSize": 16, | |
"editor.fontFamily": "Roboto Mono, Menlo, Monaco, 'Courier New', monospace", | |
"workbench.colorTheme": "GitHub Plus", | |
"workbench.fontAliasing": "antialiased", | |
"editor.lineHeight": 32, | |
"editor.wordWrap": "on", | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.iconTheme": "eq-material-theme-icons", | |
"window.zoomLevel": 0, |
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 | |
public function test_jobs_older_than_90_days_are_deleted_automatically() | |
{ | |
$listings = factory(Listing::class, 5)->create(); | |
$listings[0]->update(['created_at' => now()->subDays(91)]); | |
$listings[1]->update(['created_at' => now()->subDays(91)]); | |
// We have 5 listings now |
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
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |