/**
  * @test
  */
 public function testItPerformsABootMethod()
 {
     $this->applicationMock->shouldReceive('version')->once()->andReturn('5.2.6');
     $this->applicationMock->shouldReceive('make')->once()->andReturn('fake_config_path');
     $dispatcherMock = Mockery::mock(Dispatcher::class);
     $dispatcherMock->shouldReceive('listen')->once();
     $this->serviceProvider->boot($dispatcherMock);
 }
 /**
  * Register the service provider.
  *
  * @return void
  */
 public function register()
 {
     // Configure any bindings that are version dependent
     $this->provider->register();
     // Let the IoC container be able to make a Symfony event dispatcher
     $this->app->bind('Symfony\\Component\\EventDispatcher\\EventDispatcherInterface', 'Symfony\\Component\\EventDispatcher\\EventDispatcher');
     // Setup default configurations for the GoogleMoviesClient Client
     $this->app->singleton('GoogleMoviesClient\\Client', function () {
         $config = $this->provider->config();
         $options = $config['options'];
         // Use an Event Dispatcher that uses the Laravel event dispatcher
         $options['event_dispatcher'] = $this->app->make('GoogleMoviesClient\\Laravel\\Adapters\\EventDispatcherAdapter');
         return new Client($options);
     });
 }
 /**
  * Boot the provider, adding the "gatekeeper" type to the Auth handling
  *
  * @param Router $router Laravel router instance
  */
 public function boot(Router $router)
 {
     Auth::extend('gatekeeper', function ($app) {
         return new UserProvider();
     });
     parent::boot($router);
 }
예제 #4
0
 /**
  * Create a new service provider instance.
  *
  * @param \Illuminate\Contracts\Foundation\Application $app
  */
 public function __construct($app)
 {
     parent::__construct($app);
     $this->app->singleton('flare', function ($app) {
         return $app->make(\LaravelFlare\Flare\Flare::class, [$app]);
     });
 }
 /**
  * Bootstrap the application services.
  *
  * @return void
  */
 public function boot(Router $router)
 {
     parent::boot($router);
     $this->loadViewsFrom(__DIR__ . '/views', 'construct');
     $this->publishes([__DIR__ . '/AppController.php' => base_path('app/Http/Controllers/AppController.php'), __DIR__ . '/app.scss' => base_path('resources/assets/sass/app.scss'), __DIR__ . '/ie.scss' => base_path('resources/assets/sass/ie.scss'), __DIR__ . '/admin.js' => base_path('resources/assets/js/admin.js'), __DIR__ . '/svg' => base_path('resources/assets/svg'), __DIR__ . '/_settings.scss' => base_path('resources/assets/sass/_settings.scss'), __DIR__ . '/.gitignore.example' => base_path('.gitignore'), __DIR__ . '/bower.json' => base_path('bower.json'), __DIR__ . '/.bowerrc' => base_path('.bowerrc'), __DIR__ . '/package.json' => base_path('package.json'), __DIR__ . '/gulpfile.js' => base_path('gulpfile.js'), __DIR__ . '/settings.js' => base_path('settings.js'), __DIR__ . '/config/site.php' => config_path('site.php'), __DIR__ . '/config/mail.php' => config_path('mail.php'), __DIR__ . '/config/filesystems.php' => config_path('filesystems.php'), __DIR__ . '/database/migrations' => $this->app->databasePath() . '/migrations']);
     include __DIR__ . '/routes.php';
 }
예제 #6
0
 /**
  * Service provider constructor method.
  *
  * @param \Illuminate\Support\Facades\App $app
  * @return void
  */
 public function __construct($app)
 {
     parent::__construct($app);
     $this->providers = config('locality.providers', []);
     $this->aliases = config('locality.aliases', []);
     $this->aliasLoader = AliasLoader::getInstance();
 }
예제 #7
0
파일: Console.php 프로젝트: loduis/artisan
 /**
  * Crea a new instance of console
  *
  * @param string $basePath
  */
 public function __construct($basePath)
 {
     parent::__construct(new Application($basePath));
     $this->input = new ArgvInput();
     $this->output = new ConsoleOutput();
     $this->config = $this->getConfiguration($basePath);
 }
예제 #8
0
 public function __construct(Application $app, Router $router, View $view)
 {
     parent::__construct($app);
     $this->app = $app;
     $this->router = $router;
     $this->view = $view;
 }
 /**
  * Boot the service provider.
  *
  * This method is called after all other service providers have
  * been registered, meaning you have access to all other services
  * that have been registered by the framework.
  *
  * @return void
  */
 public function boot(DispatcherContract $events)
 {
     parent::boot($events);
     // Publish the database migrations
     $this->publishes([__DIR__ . '/../database/migrations' => $this->app->databasePath() . '/migrations'], 'migrations');
     $this->publishes([__DIR__ . '/../config' => config_path()], 'config');
 }
예제 #10
0
 /**
  * Bootstrap the application events.
  *
  * @return void
  */
 public function boot()
 {
     parent::boot();
     $this->package('edvinaskrucas/rbauth');
     $this->extendAuth();
     $this->registerFilters();
 }
예제 #11
0
 /**
  * Create a new service provider instance.
  *
  * @param Application $app
  *
  * @throws LackOfCoffeeException
  */
 public function __construct(Application $app)
 {
     parent::__construct($app);
     if ($this->defer === null) {
         throw new LackOfCoffeeException('Please define whether this provider should be deferred or not.');
     }
 }
예제 #12
0
 /**
  * Bootstrap the application services.
  *
  * @return void
  */
 public function boot(Router $router)
 {
     $router->bind('article', function ($id) {
         return \App\Article::where('slug', $id)->first();
     });
     parent::boot($router);
 }
예제 #13
0
 /**
  * Boot the service provider.
  *
  * This method is called after all other service providers have
  * been registered, meaning you have access to all other services
  * that have been registered by the framework.
  *
  * @return void
  */
 public function boot(DispatcherContract $events)
 {
     parent::boot($events);
     // Publish the database migrations
     $this->publishes([__DIR__ . '/../database/migrations' => $this->app->databasePath() . '/migrations'], 'migrations');
     $this->publishes([__DIR__ . '/../config' => config_path()], 'config');
     // Log needs a closure as a listener
     Log::listen(function ($level, $message, $context) {
         // Throw out debug messages if we are not in debug mode
         if ($level == 'debug' && \Config::get('app.debug') != true) {
             return;
         }
         // Fetch the currently logged in user
         $username = ApplogHelper::currentUserName();
         // Get the list of client IP addresses
         $clientIp = ApplogHelper::getClientIps();
         // Split the log message to see how it is formatted.
         $logdata = explode(':', $message, 6);
         if (count($logdata) == 6) {
             list($classname, $traitname, $filename, $linenumber, $functionname, $message) = $logdata;
         } else {
             list($classname, $traitname, $filename, $linenumber, $functionname, $message) = ['', '', '', '', '', $message];
         }
         // Store the log entry.
         try {
             Applog::create(['type' => $level, 'classname' => $classname, 'traitname' => $traitname, 'filename' => $filename, 'linenumber' => $linenumber, 'functionname' => $functionname, 'message' => $message, 'details' => json_encode($context), 'ipaddr' => $clientIp, 'created_by' => $username, 'updated_by' => $username]);
         } catch (\Exception $e) {
             // Do nothing
         }
     });
 }
예제 #14
0
 /**
  * The constructor.
  *
  * @param Application $app
  * @param string      $name
  * @param string      $path
  */
 public function __construct(Application $app, $name, $path)
 {
     parent::__construct($app);
     $this->setName($name);
     $this->setPath(realpath($path));
     $this->setDispatcher($app['events']);
 }
 public function boot(Dispatcher $events)
 {
     parent::boot($events);
     App::register('JLeonardoLemos\\Categories\\Providers\\RouteServiceProvider');
     App::register('JLeonardoLemos\\Categories\\Providers\\EventServiceProvider');
     $this->publishesMigrations();
 }
예제 #16
0
 public function __construct($app)
 {
     parent::__construct($app);
     $this->houseModel = new House();
     $this->projectModel = new Project();
     $this->designModel = new Design();
 }
 /**
  * Bootstrap the application events.
  *
  * @return void
  */
 public function boot()
 {
     parent::boot();
     // @see https://coderwall.com/p/svocrg
     $this->package('npmweb/php-env-loader', null, __DIR__ . '/../../../');
     $this->loadEnv();
 }
예제 #18
0
 /**
  * Send logs from the given level to Pushbullet.
  *
  * @return void
  */
 public function boot()
 {
     parent::boot();
     if (in_array(config('app.env'), (array) config('services.monobullet.env', config('app.env')))) {
         $monolog = Log::getMonolog();
         $monolog->pushHandler(new PushbulletHandler(config('services.monobullet.token'), config('services.monobullet.recipients'), config('services.monobullet.level', Logger::INFO), config('services.monobullet.propagate', true)));
     }
 }
예제 #19
0
 /**
  * Bootstrap the application services.
  *
  * @return void
  */
 public function boot(Router $router)
 {
     parent::boot($router);
     $this->loadViewsFrom(__DIR__ . '/views', 'build');
     $this->publishes([__DIR__ . '/app.scss' => base_path('resources/assets/sass/app.scss'), __DIR__ . '/app.scss' => base_path('resources/assets/sass/ie.scss'), __DIR__ . '/_settings.scss' => base_path('resources/assets/sass/_settings.scss'), __DIR__ . '/.gitignore.example' => base_path('.gitignore'), __DIR__ . '/bower.json' => base_path('bower.json'), __DIR__ . '/.bowerrc' => base_path('.bowerrc'), __DIR__ . '/package.json' => base_path('package.json'), __DIR__ . '/gulpfile.js' => base_path('gulpfile.js'), __DIR__ . '/settings.js' => base_path('settings.js'), __DIR__ . '/config/blog.php' => config_path('blog.php'), __DIR__ . '/config/mail.php' => config_path('mail.php'), __DIR__ . '/config/filesystems.php' => config_path('filesystems.php'), __DIR__ . '/database/migrations' => $this->app->databasePath() . '/migrations']);
     $this->publishes([__DIR__ . '/assets' => base_path('resources/assets/vendor/build')], 'publish');
     include __DIR__ . '/routes.php';
 }
 /**
  * Create a new service provider instance.
  *
  * @param  \Illuminate\Contracts\Foundation\Application  $app
  */
 public function __construct($app)
 {
     parent::__construct($app);
     $appVersion = method_exists($app, 'version') ? $app->version() : $app::VERSION;
     $this->isLumen = str_contains($appVersion, 'Lumen');
     $this->isLaravel4 = (int) $appVersion == 4;
     $this->isLaravel5 = (int) $appVersion == 5;
 }
 public function __construct($app)
 {
     $this->merchantId = config('services.mpay24.merchantId');
     $this->password = config('services.mpay24.password');
     $this->testMode = config('services.mpay24.test', false);
     $this->debugMode = config('services.mpay24.debug', false);
     parent::__construct($app);
 }
 /**
  * Pass view binding methods to the ViewBinder instance
  *
  * @param string $methodName The called method name
  * @param array $arguments The called method arguments
  *
  * @return mixed The return value from the ViewBinder method
  *
  * @throws \BadMethodCallException If the method does not exist in the
  * ViewBinder instance
  */
 public function __call($methodName, $arguments)
 {
     $method = DynamicMethod::load($methodName);
     if ($method->existsOn($this->viewBinder)) {
         return $method->callOn($this->viewBinder, $arguments);
     }
     return parent::__call($methodName, $arguments);
 }
예제 #23
0
 /**
  * Bootstrap any application services.
  *
  * @return void
  */
 public function boot()
 {
     parent::boot();
     \Blade::setRawTags("[[", "]]");
     \Blade::setContentTags('<%', '%>');
     // for variables and all things Blade
     \Blade::setEscapedContentTags('<%%', '%%>');
     // for escaped data
 }
 public function test_it_should_publish_the_config_path()
 {
     $this->appMock->shouldReceive('routesAreCached')->andReturn(true);
     $this->appMock->shouldReceive('call');
     $this->sp->boot($this->routerMock);
     $paths = ServiceProvider::pathsToPublish(RouteBinderServiceProvider::class, 'config');
     $this->assertArrayHasKey(dirname(__DIR__) . '/config/routes.php', $paths);
     $this->assertContains('/config/routes.php', $paths);
 }
예제 #25
0
 public function boot(Dispatcher $events)
 {
     # Call parent
     parent::boot($events);
     # Views
     $this->loadViewsFrom(__DIR__ . '/../View', 'install');
     # Call Events
     $this->events($events);
 }
예제 #26
0
 public function __construct($app)
 {
     parent::__construct($app);
     if (!$this->app->resolved('Mvalim\\PackageUtils\\Container')) {
         $this->app->singleton('Mvalim\\PackageUtils\\Container', function () use($app) {
             return new Container($app);
         });
     }
 }
 public function __construct($app)
 {
     if (method_exists($app, 'configure')) {
         // @codeCoverageIgnoreStart
         $app->configure('oauth2');
         // @codeCoverageIgnoreEnd
     }
     $this->options = $app->make('config')->get('oauth2');
     parent::__construct($app);
 }
 public function boot()
 {
     if (method_exists($this, 'package')) {
         $this->package('stevebauman/calendar-helper');
     } else {
         $this::$configSeparator = '.';
         $this->publishes([__DIR__ . '../../../config/config.php' => config_path('calendar-helper.php')], 'config');
         $this->loadTranslationsFrom(__DIR__ . '../../../lang', 'calendar-helper');
     }
     parent::boot();
 }
예제 #29
0
 /**
  * Create do provider.
  *
  * @param \Illuminate\Contracts\Foundation\Application $app
  */
 public function __construct($app)
 {
     parent::__construct($app);
     // Trocar instancias
     foreach ($this->instances as $provider => $classServiceProvider) {
         // Limpar facade
         Facade::clearResolvedInstance($provider);
         // Trocar / Criar
         $this->app->instance($provider, new $classServiceProvider($app));
     }
 }
예제 #30
0
 /**
  * Execute the console command.
  *
  * @return void
  */
 public function fire()
 {
     $paths = ServiceProvider::pathsToPublish($this->option('provider'), $this->option('tag'));
     foreach ($paths as $from => $to) {
         if ($this->files->isFile($from)) {
             $this->publishFile($from, $to);
         } elseif ($this->files->isDirectory($from)) {
             $this->publishDirectory($from, $to);
         }
     }
     $this->info('Publishing Complete!');
 }