GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Pull Request — master (#1)
by Bob Olde
02:28
created
tests/Services/ProductTypesTest.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,6 @@
 block discarded – undo
35 35
      * @covers ::export
36 36
      * @dataProvider provideValidProductTypes
37 37
      *
38
-     * @param ProductTypeModel[] $groups
39 38
      * @param array              $expectedResult
40 39
      */
41 40
     public function testSuccessfulExport(array $types, array $expectedResult = [])
Please login to merge, or discard this patch.
Indentation   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -70,25 +70,25 @@
 block discarded – undo
70 70
         $this->assertFalse($import->hasErrors());
71 71
     }
72 72
 
73
-      /**
74
-       * @covers ::import
75
-       * @dataProvider provideValidProductTypeDefinitions
76
-       *
77
-       * @param array $typeDefinitions
78
-       */
79
-      public function testImportWithForceOption(array $typeDefinitions)
80
-      {
81
-          $this->setMockCategoriesService();
82
-          $this->setMockDbConnection();
83
-          $this->setMockSchematicFields();
84
-
85
-          $schematicProductTypesService = new ProductTypes();
86
-
87
-          $import = $schematicProductTypesService->import($typeDefinitions, true);
88
-
89
-          $this->assertInstanceOf(Result::class, $import);
90
-          $this->assertFalse($import->hasErrors());
91
-      }
73
+        /**
74
+         * @covers ::import
75
+         * @dataProvider provideValidProductTypeDefinitions
76
+         *
77
+         * @param array $typeDefinitions
78
+         */
79
+        public function testImportWithForceOption(array $typeDefinitions)
80
+        {
81
+            $this->setMockCategoriesService();
82
+            $this->setMockDbConnection();
83
+            $this->setMockSchematicFields();
84
+
85
+            $schematicProductTypesService = new ProductTypes();
86
+
87
+            $import = $schematicProductTypesService->import($typeDefinitions, true);
88
+
89
+            $this->assertInstanceOf(Result::class, $import);
90
+            $this->assertFalse($import->hasErrors());
91
+        }
92 92
 
93 93
     //==============================================================================================================
94 94
     //==============================================  PROVIDERS  ===================================================
Please login to merge, or discard this patch.