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
Sun, Jul 27, 20:34 (8 h, 4 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2767648
Default Alt Text
PhabricatorAPIServiceProvider.php (591 B)

Event Timeline