Skip to content

Commit

Permalink
fix: removed all classes which are not bounded to container
Browse files Browse the repository at this point in the history
  • Loading branch information
MrPunyapal authored Jan 16, 2025
1 parent 7f1f1f1 commit a1b958f
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions config/sets/laravel-container-string-to-fully-qualified-name.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,12 @@
$rectorConfig->import(__DIR__ . '/../config.php');

$servicesMap = [
'events' => 'Illuminate\Contracts\Events\Dispatcher',
'config' => 'Illuminate\Contracts\Config\Repository',
'log' => 'Psr\Log\LoggerInterface',
'router' => 'Illuminate\Routing\Router',
'url' => 'Illuminate\Contracts\Routing\UrlGenerator',
'redirect' => 'Illuminate\Routing\Redirector',
'auth' => 'Illuminate\Contracts\Auth\Factory',
'auth.driver' => 'Illuminate\Auth\SessionGuard',
'cookie' => 'Illuminate\Cookie\CookieJar',
'db.factory' => 'Illuminate\Database\Connectors\ConnectionFactory',
'db' => 'Illuminate\Database\ConnectionResolverInterface',
Expand All @@ -32,30 +30,22 @@
'session' => 'Illuminate\Session\SessionManager',
'session.store' => 'Illuminate\Contracts\Session\Session',
'view' => 'Illuminate\Contracts\View\Factory',
'view.finder' => 'Illuminate\View\ViewFinderInterface',
'blade.compiler' => 'Illuminate\View\Compilers\CompilerInterface',
'view.engine.resolver' => 'Illuminate\View\Engines\EngineResolver',
'flare.logger' => 'Monolog\Logger',
'cache' => 'Illuminate\Contracts\Cache\Factory',
'cache.store' => 'Illuminate\Cache\Repository',
'memcached.connector' => 'Illuminate\Cache\MemcachedConnector',
'queue' => 'Illuminate\Queue\QueueManager',
'queue.connection' => 'Illuminate\Contracts\Queue\Queue',
'queue.worker' => 'Illuminate\Queue\Worker',
'queue.listener' => 'Illuminate\Queue\Listener',
'queue.failer' => 'Illuminate\Queue\Failed\DatabaseUuidFailedJobProvider',
'migration.repository' => 'Illuminate\Database\Migrations\MigrationRepositoryInterface',
'migration.creator' => 'Illuminate\Database\Migrations\MigrationCreator',
'composer' => 'Illuminate\Support\Composer',
'hash' => 'Illuminate\Hashing\HashManager',
'hash.driver' => 'Illuminate\Contracts\Hashing\Hasher',
'mail.manager' => 'Illuminate\Contracts\Mail\Factory',
'mailer' => 'Illuminate\Mail\Mailer',
'auth.password' => 'Illuminate\Contracts\Auth\PasswordBrokerFactory',
'auth.password.broker' => 'Illuminate\Contracts\Auth\PasswordBroker',
'pipeline' => 'Illuminate\Contracts\Pipeline\Pipeline',
'redis' => 'Illuminate\Contracts\Redis\Factory',
'translation.loader' => 'Illuminate\Contracts\Translation\Loader',
'translator' => 'Illuminate\Contracts\Translation\Translator',
'validation.presence' => 'Illuminate\Validation\DatabasePresenceVerifier',
'validator' => 'Illuminate\Contracts\Validation\Factory',
Expand Down

0 comments on commit a1b958f

Please sign in to comment.