Completed
Pull Request — master (#8)
by Miro
03:40
created
tests/Repo/SimpleRepoFacadeTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -193,7 +193,7 @@
 block discarded – undo
193 193
     }
194 194
 
195 195
     /**
196
-     * @param $wrapped
196
+     * @param m\MockInterface $wrapped
197 197
      *
198 198
      * @return SimpleRepoFacade
199 199
      */
Please login to merge, or discard this patch.
tests/SampleDataProvider.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
      */
12 12
     public function getRepoDetails()
13 13
     {
14
-        $content = file_get_contents(__DIR__.'/sample-data/devboard/test-hitman/repo-details.json');
14
+        $content = file_get_contents(__DIR__ . '/sample-data/devboard/test-hitman/repo-details.json');
15 15
 
16 16
         return json_decode($content, true);
17 17
     }
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
      */
22 22
     public function getBranch()
23 23
     {
24
-        $content = file_get_contents(__DIR__.'/sample-data/devboard/test-hitman/branch-master.json');
24
+        $content = file_get_contents(__DIR__ . '/sample-data/devboard/test-hitman/branch-master.json');
25 25
 
26 26
         return json_decode($content, true);
27 27
     }
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
      */
32 32
     public function getAllBranches()
33 33
     {
34
-        $content = file_get_contents(__DIR__.'/sample-data/devboard/test-hitman/branches.json');
34
+        $content = file_get_contents(__DIR__ . '/sample-data/devboard/test-hitman/branches.json');
35 35
 
36 36
         return json_decode($content, true);
37 37
     }
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
      */
42 42
     public function getAllBranchNames()
43 43
     {
44
-        $content = file_get_contents(__DIR__.'/sample-data/devboard/test-hitman/branchnames.json');
44
+        $content = file_get_contents(__DIR__ . '/sample-data/devboard/test-hitman/branchnames.json');
45 45
 
46 46
         return json_decode($content, true);
47 47
     }
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
      */
52 52
     public function getAllTagNames()
53 53
     {
54
-        $content = file_get_contents(__DIR__.'/sample-data/devboard/test-hitman/tags.json');
54
+        $content = file_get_contents(__DIR__ . '/sample-data/devboard/test-hitman/tags.json');
55 55
 
56 56
         return json_decode($content, true);
57 57
     }
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
     public function getCommit()
63 63
     {
64 64
         $content = file_get_contents(
65
-            __DIR__.'/sample-data/devboard/test-hitman/commit-db911bd3a3dd8bb2ad9eccbcb0a396595a51491d.json'
65
+            __DIR__ . '/sample-data/devboard/test-hitman/commit-db911bd3a3dd8bb2ad9eccbcb0a396595a51491d.json'
66 66
         );
67 67
 
68 68
         return json_decode($content, true);
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
     public function getCommitStatus()
75 75
     {
76 76
         $content = file_get_contents(
77
-            __DIR__.'/sample-data/devboard/test-hitman/commit_status-db911bd3a3dd8bb2ad9eccbcb0a396595a51491d.json'
77
+            __DIR__ . '/sample-data/devboard/test-hitman/commit_status-db911bd3a3dd8bb2ad9eccbcb0a396595a51491d.json'
78 78
         );
79 79
 
80 80
         return json_decode($content, true);
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
     public function getCommitStatuses()
87 87
     {
88 88
         $content = file_get_contents(
89
-            __DIR__.'/sample-data/devboard/test-hitman/commit_statuses-db911bd3a3dd8bb2ad9eccbcb0a396595a51491d.json'
89
+            __DIR__ . '/sample-data/devboard/test-hitman/commit_statuses-db911bd3a3dd8bb2ad9eccbcb0a396595a51491d.json'
90 90
         );
91 91
 
92 92
         return json_decode($content, true);
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
      */
98 98
     public function getAllPullRequests()
99 99
     {
100
-        $content = file_get_contents(__DIR__.'/sample-data/devboard/test-hitman/pull_requests.json');
100
+        $content = file_get_contents(__DIR__ . '/sample-data/devboard/test-hitman/pull_requests.json');
101 101
 
102 102
         return json_decode($content, true);
103 103
     }
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
      */
108 108
     public function getAllMilestones()
109 109
     {
110
-        $content = file_get_contents(__DIR__.'/sample-data/devboard/test-hitman/milestones.json');
110
+        $content = file_get_contents(__DIR__ . '/sample-data/devboard/test-hitman/milestones.json');
111 111
 
112 112
         return json_decode($content, true);
113 113
     }
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
      */
118 118
     public function getAllIssues()
119 119
     {
120
-        $content = file_get_contents(__DIR__.'/sample-data/devboard/test-hitman/issues.json');
120
+        $content = file_get_contents(__DIR__ . '/sample-data/devboard/test-hitman/issues.json');
121 121
 
122 122
         return json_decode($content, true);
123 123
     }
Please login to merge, or discard this patch.