Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Feb 5, 2020
1 parent 2ef4135 commit 37579c9
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions config/tinker.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,32 +19,32 @@

/*
|--------------------------------------------------------------------------
| Alias Blacklist
| Alias Whitelist
|--------------------------------------------------------------------------
|
| Typically, Tinker automatically aliases classes as you require them in
| Tinker. However, you may wish to never alias certain classes, which
| you may accomplish by listing the classes in the following array.
| Tinker will not automatically alias classes in your vendor namespaces
| but you may explicitly allow a subset of classes to get aliased by
| adding the names of each of those classes to the following list.
|
*/

'dont_alias' => [
'App\Nova',
'alias' => [
//
],

/*
|--------------------------------------------------------------------------
| Alias Whitelist
| Alias Blacklist
|--------------------------------------------------------------------------
|
| Tinker will not automatically alias classes in your vendor namespaces.
| However, you may wish to allow this for certain classes, which you
| may accomplish by listing the classes in the following array.
| Typically, Tinker automatically aliases classes as you require them in
| Tinker. However, you may wish to never alias certain classes, which
| you may accomplish by listing the classes in the following array.
|
*/

'alias' => [
//
'dont_alias' => [
'App\Nova',
],

];

0 comments on commit 37579c9

Please sign in to comment.