File tree 4 files changed +36
-37
lines changed
4 files changed +36
-37
lines changed Original file line number Diff line number Diff line change 3
3
4
4
/*
5
5
|--------------------------------------------------------------------------
6
- | Register The Composer Auto Loader
6
+ | Register The Auto Loader
7
7
|--------------------------------------------------------------------------
8
8
|
9
9
| Composer provides a convenient, automatically generated class loader
13
13
|
14
14
*/
15
15
16
- require __DIR__ .'/vendor/autoload.php ' ;
17
-
18
- /*
19
- |--------------------------------------------------------------------------
20
- | Register The Workbench Loaders
21
- |--------------------------------------------------------------------------
22
- |
23
- | The Laravel workbench provides a convenient place to develop packages
24
- | when working locally. However we will need to load in the Composer
25
- | auto-load files for the packages so that these can be used here.
26
- |
27
- */
28
-
29
- if (is_dir ($ workbench = __DIR__ .'/workbench ' ))
30
- {
31
- Illuminate \Workbench \Starter::start ($ workbench );
32
- }
16
+ require __DIR__ .'/bootstrap/autoload.php ' ;
33
17
34
18
/*
35
19
|--------------------------------------------------------------------------
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ /*
4
+ |--------------------------------------------------------------------------
5
+ | Register The Composer Auto Loader
6
+ |--------------------------------------------------------------------------
7
+ |
8
+ | Composer provides a convenient, automatically generated class loader
9
+ | for our application. We just need to utilize it! We'll require it
10
+ | into the script here so that we do not have to worry about the
11
+ | loading of any our classes "manually". Feels great to relax.
12
+ |
13
+ */
14
+
15
+ require __DIR__ .'/../vendor/autoload.php ' ;
16
+
17
+ /*
18
+ |--------------------------------------------------------------------------
19
+ | Register The Workbench Loaders
20
+ |--------------------------------------------------------------------------
21
+ |
22
+ | The Laravel workbench provides a convenient place to develop packages
23
+ | when working locally. However we will need to load in the Composer
24
+ | auto-load files for the packages so that these can be used here.
25
+ |
26
+ */
27
+
28
+ if (is_dir ($ workbench = __DIR__ .'/../workbench ' ))
29
+ {
30
+ Illuminate \Workbench \Starter::start ($ workbench );
31
+ }
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<phpunit backupGlobals =" false"
3
3
backupStaticAttributes =" false"
4
- bootstrap =" vendor /autoload.php"
4
+ bootstrap =" bootstrap /autoload.php"
5
5
colors =" true"
6
6
convertErrorsToExceptions =" true"
7
7
convertNoticesToExceptions =" true"
Original file line number Diff line number Diff line change 10
10
11
11
/*
12
12
|--------------------------------------------------------------------------
13
- | Register The Composer Auto Loader
13
+ | Register The Auto Loader
14
14
|--------------------------------------------------------------------------
15
15
|
16
16
| Composer provides a convenient, automatically generated class loader
20
20
|
21
21
*/
22
22
23
- require __DIR__ .'/../vendor/autoload.php ' ;
24
-
25
- /*
26
- |--------------------------------------------------------------------------
27
- | Register The Workbench Loaders
28
- |--------------------------------------------------------------------------
29
- |
30
- | The Laravel workbench provides a convenient place to develop packages
31
- | when working locally. However we will need to load in the Composer
32
- | auto-load files for the packages so that these can be used here.
33
- |
34
- */
35
-
36
- if (is_dir ($ workbench = __DIR__ .'/../workbench ' ))
37
- {
38
- Illuminate \Workbench \Starter::start ($ workbench );
39
- }
23
+ require __DIR__ .'/../bootstrap/autoload.php ' ;
40
24
41
25
/*
42
26
|--------------------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments