fix formatting

This commit is contained in:
Antonio Ramirez
2016-12-14 02:50:12 +01:00
parent f3f4b31bb4
commit 3ba01b4674
140 changed files with 512 additions and 523 deletions

View File

@ -1,6 +1,6 @@
<?php
namespace Da\User\Service;
namespace Da\User\Service;
use Da\User\Contracts\ServiceInterface;
use Da\User\Factory\TokenFactory;
@ -22,7 +22,7 @@ class ResendConfirmationService implements ServiceInterface
public function run()
{
if($this->model && !$this->model->getIsConfirmed()) {
if ($this->model && !$this->model->getIsConfirmed()) {
$token = TokenFactory::makeConfirmationToken($this->model->id);
$this->mailService->setViewParam('token', $token);
@ -31,5 +31,4 @@ class ResendConfirmationService implements ServiceInterface
return false;
}
}