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
Mon, Jun 16, 00:08 (1 d, 8 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2681111
Default Alt Text
PhabricatorAPIServiceProvider.php (591 B)

Event Timeline