Test Setup Failed
Push — master ( 414ec1...843f83 )
by Raí
13:52 queued 06:11
created
Bludata/Helpers/CurlHelper.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Bludata\Helpers;
4 4
 
5
-class CurlHelper
6
-{
5
+class CurlHelper {
7 6
     protected $init;
8 7
     protected $headers = [];
9 8
     protected $response;
Please login to merge, or discard this patch.
Bludata/Framework/Laravel/Application/BaseApplication.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,8 +6,7 @@
 block discarded – undo
6 6
 use Illuminate\Foundation\Application;
7 7
 use Illuminate\Support\Facades\Route;
8 8
 
9
-class BaseApplication extends Application
10
-{
9
+class BaseApplication extends Application {
11 10
     public function publicRoutes(string $uri, string $controller, Closure $routes = null, array $options = [])
12 11
     {
13 12
         $options['only'] = $options['only'] ?? ['index', 'show', 'destroyed'];
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/ForgotPasswordController.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,8 +5,7 @@
 block discarded – undo
5 5
 use LaravelSeed\Http\Controllers\Controller;
6 6
 use Illuminate\Foundation\Auth\SendsPasswordResetEmails;
7 7
 
8
-class ForgotPasswordController extends Controller
9
-{
8
+class ForgotPasswordController extends Controller {
10 9
     /*
11 10
     |--------------------------------------------------------------------------
12 11
     | Password Reset Controller
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/ResetPasswordController.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,8 +5,7 @@
 block discarded – undo
5 5
 use LaravelSeed\Http\Controllers\Controller;
6 6
 use Illuminate\Foundation\Auth\ResetsPasswords;
7 7
 
8
-class ResetPasswordController extends Controller
9
-{
8
+class ResetPasswordController extends Controller {
10 9
     /*
11 10
     |--------------------------------------------------------------------------
12 11
     | Password Reset Controller
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/LoginController.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,8 +5,7 @@
 block discarded – undo
5 5
 use LaravelSeed\Http\Controllers\Controller;
6 6
 use Illuminate\Foundation\Auth\AuthenticatesUsers;
7 7
 
8
-class LoginController extends Controller
9
-{
8
+class LoginController extends Controller {
10 9
     /*
11 10
     |--------------------------------------------------------------------------
12 11
     | Login Controller
Please login to merge, or discard this patch.
Bludata/Doctrine/Common/Contracts/Repository.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Bludata\Doctrine\Common\Contracts;
4 4
 
5
-interface Repository
6
-{
5
+interface Repository {
7 6
     public function findAll();
8 7
 
9 8
     public function findBy(array $filters): array;
Please login to merge, or discard this patch.
Bludata/Doctrine/Common/Contracts/Entity.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use DateTime;
6 6
 
7
-interface Entity
8
-{
7
+interface Entity {
9 8
     public function getId();
10 9
 
11 10
     public function getCreatedAt(): DateTime;
Please login to merge, or discard this patch.
Bludata/Doctrine/ORM/Repositories/BaseRepository.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use Bludata\Doctrine\Common\Contracts\Repository;
6 6
 
7
-abstract class BaseRepository implements Repository
8
-{
7
+abstract class BaseRepository implements Repository {
9 8
 
10 9
 }
11 10
 
Please login to merge, or discard this patch.
Bludata/Doctrine/ORM/Entities/BaseEntity.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,8 +11,7 @@
 block discarded – undo
11 11
  * @ORM\HasLifecycleCallbacks
12 12
  * @Gedmo\SoftDeleteable(fieldName="deletedAt", timeAware=false)
13 13
  */
14
-abstract class BaseEntity implements Entity
15
-{
14
+abstract class BaseEntity implements Entity {
16 15
     /**
17 16
      * @ORM\Id
18 17
      * @ORM\Column(type="guid", name="id")
Please login to merge, or discard this patch.