Page MenuHomeDevCentral

PhabricatorAPIServiceProvider.php
No OneTemporary

PhabricatorAPIServiceProvider.php

<?php
namespace Nasqueron\Notifications\Providers;
use Illuminate\Support\ServiceProvider;
use Nasqueron\Notifications\Phabricator\PhabricatorAPIFactory;
class PhabricatorAPIServiceProvider extends ServiceProvider {
/**
* Bootstraps the application services.
*
* @return void
*/
public function boot() {
}
/**
* Registers the application services.
*
* @return void
*/
public function register() {
$this->app->singleton('phabricator-api', function () {
return new PhabricatorAPIFactory;
});
}
}

File Metadata

Mime Type
text/x-php
Expires
Tue, Aug 18, 14:42 (18 h, 45 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3942926
Default Alt Text
PhabricatorAPIServiceProvider.php (592 B)

Event Timeline