Completed
Push — master ( 8c5bee...33e30f )
by
unknown
06:57 queued 04:51
created
src/Sculpin/Core/Tests/Permalink/SourcePermalinkFactoryTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -199,6 +199,9 @@
 block discarded – undo
199 199
         ];
200 200
     }
201 201
 
202
+    /**
203
+     * @param string $relativePathname
204
+     */
202 205
     private static function makeTestSource($relativePathname, array $configurationData = [])
203 206
     {
204 207
         $configuration = new Configuration($configurationData);
Please login to merge, or discard this patch.
src/Sculpin/Core/Tests/Source/CompositeDataSourceTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -20,6 +20,9 @@
 block discarded – undo
20 20
 
21 21
 class CompositeDataSourceTest extends TestCase
22 22
 {
23
+    /**
24
+     * @param string $dataSourceId
25
+     */
23 26
     public function makeDataSource($dataSourceId)
24 27
     {
25 28
         $dataSource = $this->createMock(DataSourceInterface::class);
Please login to merge, or discard this patch.
src/Sculpin/Core/Tests/Source/SourceSetTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -19,6 +19,9 @@
 block discarded – undo
19 19
 
20 20
 class SourceSetTest extends TestCase
21 21
 {
22
+    /**
23
+     * @param string $sourceId
24
+     */
22 25
     public function makeTestSource($sourceId, $hasChanged = true)
23 26
     {
24 27
         $source = $this->createMock(SourceInterface::class);
Please login to merge, or discard this patch.
src/Sculpin/Core/Source/CompositeDataSource.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
      */
54 54
     public function dataSourceId(): string
55 55
     {
56
-        return 'CompositeDataSource('.implode(',', array_map(function (DataSourceInterface $dataSource) {
56
+        return 'CompositeDataSource('.implode(',', array_map(function(DataSourceInterface $dataSource) {
57 57
             return $dataSource->dataSourceId();
58 58
         }, $this->dataSources));
59 59
     }
Please login to merge, or discard this patch.
src/Sculpin/Core/Output/OutputInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
     /**
44 44
      * File reference. (if hasFileReference)
45 45
      */
46
-    public function file() :?\SplFileInfo;
46
+    public function file() : ?\SplFileInfo;
47 47
 
48 48
     /**
49 49
      * Formatted content (if not hasFileReference)
Please login to merge, or discard this patch.
src/Sculpin/Core/Io/ConsoleIo.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
 
14 14
 namespace Sculpin\Core\Io;
15 15
 
16
-use Symfony\Component\Console\Helper\HelperSet;
17 16
 use Symfony\Component\Console\Input\InputInterface;
18 17
 use Symfony\Component\Console\Output\OutputInterface;
19 18
 
Please login to merge, or discard this patch.