I'm following a symfony tutorial from youtube, https://www.youtube.com/watch?v=yu5ILexR3Yk
Its about creating your own bundle in the project. Now when I delete default bundle i.e Appbundle folder from src directory and deleted its entry from Appkernal.php file, now when I run "php bin/console" command from terminal, it shows me following errors,
C:\xampp\htdocs\first_app>php bin/console
PHP Fatal error: Uncaught exception
'Symfony\Component\Config\Exception\FileLocatorFileNotFoundException' with message 'The file "../../src/AppBundle" does not exist (in: C:\xampp\htdocs\first_app\app/config).' in C:\xampp\htdocs\first_app\vendor\symfony\symfony\src\Symfony\Component\Config\FileLocator.php:73
Stack trace:
#0 C:\xampp\htdocs\first_app\vendor\symfony\symfony\src\Symfony\Component\HttpKernel\Config\FileLocator.php(54): Symfony\Component\Config\FileLocator->locate('../../src/AppBu...', 'C:\\xampp\\htdocs...', true)
#1 C:\xampp\htdocs\first_app\vendor\symfony\symfony\src\Symfony\Component\Config\Loader\FileLoader.php(121): Symfony\Component\HttpKernel\Config\FileLocator->locate('../../src/AppBu...', 'C:\\xampp\\htdocs...', true)
#2 C:\xampp\htdocs\first_app\vendor\symfony\symfony\src\Symfony\Component\DependencyInjection\Loader\FileLoader.php(96): Symfony\Component\Config\Loader\FileLoader::glob('../../src/AppBu...', true, NULL)
#3 C:\xampp\htdocs\first_app\vendor\symfony\symfony\src\Symfony\Component\DependencyIn in C:\xampp\htdocs\first_app\vendor\symfony\symfony\src\Symfony\Component\Config\Loader\FileLoader.php on line 179
Fatal error: Uncaught exception 'Symfony\Component\Config\Exception\FileLocatorFileNotFoundException' with message 'The file "../../src/AppBundle" does not exist (in: C:\xampp\htdocs\first_app\app/config).' in C:\xampp\htdocs\first_app\vendor\symfony\symfony\src\Symfony\Component\Config\FileLocator.php:73
Stack trace:
#0 C:\xampp\htdocs\first_app\vendor\symfony\symfony\src\Symfony\Component\HttpKern\Config\FileLocator.php(54): Symfony\Component\Config\FileLocator->locate('../../src/AppBu...', 'C:\\xampp\\htdocs...', true)
#1 C:\xampp\htdocs\first_app\vendor\symfony\symfony\src\Symfony\Component\Config
\Loader\FileLoader.php(121): Symfony\Component\HttpKernel\Config\FileLocator->lo
cate('../../src/AppBu...', 'C:\\xampp\\htdocs...', true)
#2 C:\xampp\htdocs\first_app\vendor\symfony\symfony\src\Symfony\Component\Depend
encyInjection\Loader\FileLoader.php(96): Symfony\Component\Config\Loader\FileLoa
der::glob('../../src/AppBu...', true, NULL)
#3 C:\xampp\htdocs\first_app\vendor\symfony\symfony\src\Symfony\Component\Depend
encyIn in C:\xampp\htdocs\first_app\vendor\symfony\symfony\src\Symfony\Component
\Config\Loader\FileLoader.php on line 179
I'm using symfony version 3.3.6, Any help is much appreciated.