14 lines
184 B
PHP
14 lines
184 B
PHP
<?php
|
|
|
|
namespace App\Traits;
|
|
|
|
use App\Services\Ploi\Ploi;
|
|
|
|
trait HasPloi
|
|
{
|
|
protected function getPloi(): Ploi
|
|
{
|
|
return new Ploi(config('services.ploi.token'));
|
|
}
|
|
}
|