Skip to content
This repository was archived by the owner on Mar 24, 2024. It is now read-only.

Commit 15b5db2

Browse files
committed
Update files for L5.1
1 parent a2bcb3d commit 15b5db2

File tree

8 files changed

+240
-236
lines changed

8 files changed

+240
-236
lines changed

app/Commands/Command.php

Lines changed: 0 additions & 7 deletions
This file was deleted.

app/Jobs/Command.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?php namespace SQLgreyGUI\Jobs;
2+
3+
abstract class Command {
4+
5+
//
6+
7+
}
File renamed without changes.
File renamed without changes.

bootstrap/autoload.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,8 @@
2727
|
2828
*/
2929

30-
$compiledPath = __DIR__.'/../vendor/compiled.php';
30+
$compiledPath = __DIR__.'/cache/compiled.php';
3131

32-
if (file_exists($compiledPath))
33-
{
34-
require $compiledPath;
32+
if (file_exists($compiledPath)) {
33+
require $compiledPath;
3534
}

bootstrap/cache/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*
2+
!.gitignore

0 commit comments

Comments
 (0)