API ability to manage webhooks.

This commit is contained in:
James Cole
2020-11-29 18:35:49 +01:00
parent f42bd19c1c
commit 59962005db
17 changed files with 1039 additions and 99 deletions

View File

@@ -36,19 +36,6 @@ class UserTransformer extends AbstractTransformer
/** @var UserRepositoryInterface */
private $repository;
/**
* UserTransformer constructor.
*
* @codeCoverageIgnore
*/
public function __construct()
{
$this->repository = app(UserRepositoryInterface::class);
if ('testing' === config('app.env')) {
Log::warning(sprintf('%s should not be instantiated in the TEST environment!', get_class($this)));
}
}
/**
* Transform user.
*