8
13

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

LaravelでFacadeのエイリアスをconfig/app.phpに設定したけれどクラスが見つからない場合の対処法

Last updated at Posted at 2017-09-22

2017/09/24 追記

開発環境ではconfig:cacheではなく、config:clear するのが通常です。
config:cacheと記載していた箇所を修正しました:bow:


自前で作成したクラスを簡単に呼び出したいのでFacadeのエイリアスをconfig/app.phpに設定したのはいいものの、クラスがnot foundのエラーが出てしまう場合の対処法です。

config/app.php
'aliases' => [
    // 省略
    'Example' => App\Facades\Example::class,
],

ここでaliasesに登録したExampleをControllerなどで\Example::methodName();と呼び出したところ
クラスが見つからないというエラーになってしまう…

環境

名前 バージョン
PHP 7.1.8
Laravel 5.5.5

対処法

$ php artisan config:clear

これを実行するだけでOK。
php artisan cache:clear でやっていて
「あれおかしいなー反映されないなー」てたらcache:clearだとダメだったという…

configファイルを編集したら config:cache すること。
開発環境でconfigファイルを編集したら config:clear すること。
知っている人からすれば当たり前なんでしょうけど…

8
13
4

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
13

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?