ReflectionException: Class ClassName does not exist - Laravel

PhpLaravelLaravel 5Laravel Artisan

Php Problem Overview


As soon, I am typing php artisan db:seed command.

I'm getting Error Like:

> [ReflectionException]
Class UserTableSeeder does not exist

root@dd-desktop:/opt/lampp/htdocs/dd/laravel# php artisan db:seed

Here, Is my UserTableSeeder.php & DatabaseSeeder.php Page

UserTableSeeder.php

<?php
use Illuminate\Database\Seeder;
use Illuminate\Database\Eloquent\Model;

class UserTableSeeder extends Seeder
{    
	public function run()
	{
	    DB::table('users')->delete();
	    User::create(array(
		'name'     => 'Chris Sevilleja',
		'username' => 'sevilayha',
		'email'    => '[email protected]',
		'password' => Hash::make('awesome'),
	    ));
	}    
}

DatabaseSeeder.php

<?php

use Illuminate\Database\Seeder;
use Illuminate\Database\Eloquent\Model;

class DatabaseSeeder extends Seeder
{
    /**
     * Run the database seeds.
     *
     * @return void
     */
    public function run()
    {
	    Eloquent::unguard();
	    $this->call('UserTableSeeder');
    }
}

I'm Referring This Link To Design & Develop Login Page. Please Help me to resolve this issue. Thanks.

Php Solutions


Solution 1 - Php

Perform a composer update, then composer dump-autoload.

If the above doesn't solve the problem, change the classmap in your composer.json file such that it contains the project-relative path to your php files:

"autoload-dev": {
    "classmap": [
        "tests/TestCase.php",
        "database/seeds/UserTableSeeder.php" //include the file with its path here
    ]
}, /** ... */

and soon after, perform a composer dump-autoload, and it should work now like a breeze!

Edit by @JMSamudio

If composer dump-autoload is not found, just enable this option composer config -g -- disable-tls true.

Solution 2 - Php

From my experience, this will show up most of the time when the class you are trying to call has some bugs and cannot be compiled. Check if the class that is not being reflected can be executed at its own.

Solution 3 - Php

A composer dump-autoload should fix it.

Solution 4 - Php

I had this problem and I could solve it by doing php artisan config:cache. The problem was that I had already run that command previously and later included some new seeder classes. The cached configurations didn't recognize the new classes. So running that command again worked.

If you see yourself making frequent changes to include new seeder classes then consider running php artisan config:clear. This will enable you to make as many changes as you'd like and then after testing you can run config:cache again to make things run optimally again.

Solution 5 - Php

I have the same problem with a class. I tried composer dump-autoload and php artisan config:clear but it did not solve my problem.

Then I decided to read my code to find the problem and I found the problem. The problem in my case was a missing comma in my class. See my Model code:

{
    protected
    $fillable = ['agente_id', 'matter_id', 'amendment_id', 'tipo_id'];

    public
    $rules = [
        'agente_id' => 'required', // <= See the comma
        'tipo_id' => 'required'
    ];

    public
    $niceNames = [
        'agente_id' => 'Membro', // <= This comma is missing on my code
        'tipo_id' => 'Membro'
    ];
}

Solution 6 - Php

Check your capitalization!

Your host system (Windows or Mac) is case insensitive by default, and Homestead inherits this behavior. Your production server on the other hand is case sensitive.

Whenever you get a ClassNotFound Exception check the following:

  1. Spelling
  2. Namespaces
  3. Capitalization

Solution 7 - Php

For some reason I had to run composer dumpautoload -o. Notice flag -o which mean with optimization. I don't have any idea why it works only with it but give it a try. Perhaps it helps someone.

Solution 8 - Php

composer dump-autoload
php artisan config:clear
php artisan cache:clear

This will surely work. If not then, you need to do

composer update

and then, the aforementioned commands.

Solution 9 - Php

You need to assign it to a name space for it to be found.

namespace App\Http\Controllers;

Solution 10 - Php

If the issue is not resolved by composer dump-autoload or is not a newly created class.

Check for syntax errors in your class and its traits as well. In my case, there was a syntax error in a Trait, but ReflectionException was shown for the actual Class using that Trait instead.

Solution 11 - Php

When it is looking for the seeder class file, you can run composer dump-autoload. When you run it again and it's looking for the Model, you can reference it on the seeder file itself. Like so,

use App\{Model};

Solution 12 - Php

try to use following command

php artisan db:seed --class=DatabaseSeeder

Solution 13 - Php

Not strictly related to the question but received the error ReflectionException: Class config does not exist

I had added a new .env variable with spaces in it. Running php artisan config:clear told me that any .env variable with spaces in it should be surrounded by "s.

Did this and my application stated working again, no need for config clear as still in development on Laravel Homestead (5.4)

Solution 14 - Php

Don't take this as the answer for this question. If it helps others with the same bug but the answers mentioned here not works for them. I also tried all the solutions mentioned here. But my problem was with the namespace I used. The path was wrong.

The namespace I used is:

namespace App\Http\Controllers;

But actually the controller reside inside a folder named 'FrontEnd'

so the solution is change the namespace to:

namespace App\Http\Controllers\Frontend;

Solution 15 - Php

I've recreated class, and it worked. Copy all file content, delete file, and run php artisan make:seeder ModelTableSeeder. Because composer dump-autoload didn't worked for me.

Solution 16 - Php

You may try to write app in use uppercase, so App. Worked for me.

Solution 17 - Php

Usually error message ReflectionException: Class app does not exist appears in larval test when you forget to close connection.

if you're using setUp or tearDown function in your test do not forget to close connection by calling parent::setUp and parent::tearDown

    public function setUp()
    {
        parent::setUp();
    }

    public function tearDown()
    {
        parent::tearDown();
    }

Solution 18 - Php

In case of using psr-0 , check the class name does not contain underscore .

Solution 19 - Php

I had this error when trying to reach an endpoint in a custom route file, that had a namespace prepended in RouteServiceProvider

  • The namespace in the class was correct.
  • The file path of the class file was correct.
  • The controller call from the routes file was correct (when not taking the prepended namespace from the RouteServiceProvider into account)
  • The default $router->group(['namespace' ...]) in the RouteServiceProvider was incorrect.

Updating the namespace in the RouteServiceProvider solved the issue, as the relative controller path specified in the routes file was now resolving correctly.

Solution 20 - Php

Check file/folder permissions

I struggled with this error today, and no amount of cache, config, autoload clears did anything to help. To add to the confusion, the error was thrown if initiated by a web request, but accessing the class in tinker worked fine.

After checking for typo's, syntax errors, and incorrect namespaces, I ended up discovering it was a file permission issue. The folder and file containing my class did not have appropriate permissions so it was throwing this error. The incorrect permission level I had was 771 (folder) and 660 (file), by changing it to 775 and 664 I was able to get it working.

My understanding of the different behaviors is that when running from the command line it was reading the file as my user (which had all the permissions it needed), but when initiated from the web it uses the "other" permission group which could do nothing.

Solution 21 - Php

composer dump-autoload 

this will fix it

Solution 22 - Php

composer update 

Above command worked for me.

Whenever you make new migration in la-ravel you need to refresh classmap in composer.json file .

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionNana PartykarView Question on Stackoverflow
Solution 1 - PhpAhmad Baktash HayeriView Answer on Stackoverflow
Solution 2 - PhpKamaroView Answer on Stackoverflow
Solution 3 - PhpfsavinaView Answer on Stackoverflow
Solution 4 - PhpAdam RanganathanView Answer on Stackoverflow
Solution 5 - PhpLuciano BragaView Answer on Stackoverflow
Solution 6 - PhpFazil RazaView Answer on Stackoverflow
Solution 7 - PhpJaroslav KlimčíkView Answer on Stackoverflow
Solution 8 - Phpuser3309447View Answer on Stackoverflow
Solution 9 - PhpG-ManView Answer on Stackoverflow
Solution 10 - PhpManpreetView Answer on Stackoverflow
Solution 11 - PhpKent AguilarView Answer on Stackoverflow
Solution 12 - PhpeasycodingclubView Answer on Stackoverflow
Solution 13 - PhpScott BrownView Answer on Stackoverflow
Solution 14 - PhpAbhiView Answer on Stackoverflow
Solution 15 - PhpМ.Б.View Answer on Stackoverflow
Solution 16 - PhpEpsilon47View Answer on Stackoverflow
Solution 17 - PhpSuresh DhakalView Answer on Stackoverflow
Solution 18 - PhpYassine CHABLIView Answer on Stackoverflow
Solution 19 - PhpxyzView Answer on Stackoverflow
Solution 20 - PhpBrian ThompsonView Answer on Stackoverflow
Solution 21 - PhpRichard kortbyView Answer on Stackoverflow
Solution 22 - Phpdivya_kanakView Answer on Stackoverflow