@@ -165,7 +165,7 @@ |
||
165 | 165 | /** |
166 | 166 | * @param string $line |
167 | 167 | * |
168 | - * @return mixed |
|
168 | + * @return string[] |
|
169 | 169 | */ |
170 | 170 | protected function splitStatusLine($line) |
171 | 171 | { |
@@ -186,7 +186,7 @@ |
||
186 | 186 | } |
187 | 187 | |
188 | 188 | /** |
189 | - * @param mixed $subject |
|
189 | + * @param \PhpCollection\Sequence $subject |
|
190 | 190 | */ |
191 | 191 | private function assertInterfaces($subject) |
192 | 192 | { |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | protected $finder; |
51 | 51 | |
52 | 52 | /** |
53 | - * @param null $name |
|
53 | + * @param integer $name |
|
54 | 54 | * |
55 | 55 | * @return \GitElephant\Repository |
56 | 56 | */ |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | /** |
122 | 122 | * @param string $name file name |
123 | 123 | * @param string|null $folder folder name |
124 | - * @param null $content content |
|
124 | + * @param string|null $content content |
|
125 | 125 | * @param Repository $repository repository to add file to |
126 | 126 | * |
127 | 127 | * @return void |
@@ -238,6 +238,9 @@ discard block |
||
238 | 238 | ->will($this->returnValue($this->getMockCommand())); |
239 | 239 | } |
240 | 240 | |
241 | + /** |
|
242 | + * @param string[] $output |
|
243 | + */ |
|
241 | 244 | protected function addOutputToMockRepo(\PHPUnit_Framework_MockObject_MockObject $repo, $output) |
242 | 245 | { |
243 | 246 | $repo |
@@ -274,6 +277,17 @@ discard block |
||
274 | 277 | return $this->getMock('GitElephant\GitBinary'); |
275 | 278 | } |
276 | 279 | |
280 | + /** |
|
281 | + * @param string $sha |
|
282 | + * @param string $tree |
|
283 | + * @param string $author |
|
284 | + * @param string $committer |
|
285 | + * @param string $emailAuthor |
|
286 | + * @param string $emailCommitter |
|
287 | + * @param string $datetimeAuthor |
|
288 | + * @param string $datetimeCommitter |
|
289 | + * @param string $message |
|
290 | + */ |
|
277 | 291 | protected function doCommitTest( |
278 | 292 | Commit $commit, |
279 | 293 | $sha, |
@@ -8,7 +8,6 @@ |
||
8 | 8 | |
9 | 9 | namespace GitElephant\Command; |
10 | 10 | |
11 | -use GitElephant\Objects\Commit; |
|
12 | 11 | use \GitElephant\TestCase; |
13 | 12 | |
14 | 13 | class ResetCommandTest extends TestCase |
@@ -351,7 +351,7 @@ discard block |
||
351 | 351 | * |
352 | 352 | * @param bool $short short version |
353 | 353 | * |
354 | - * @return mixed |
|
354 | + * @return string |
|
355 | 355 | */ |
356 | 356 | public function getSha($short = false) |
357 | 357 | { |
@@ -361,7 +361,7 @@ discard block |
||
361 | 361 | /** |
362 | 362 | * tree getter |
363 | 363 | * |
364 | - * @return mixed |
|
364 | + * @return string |
|
365 | 365 | */ |
366 | 366 | public function getTree() |
367 | 367 | { |
@@ -371,7 +371,7 @@ discard block |
||
371 | 371 | /** |
372 | 372 | * datetimeAuthor getter |
373 | 373 | * |
374 | - * @return mixed |
|
374 | + * @return \DateTime |
|
375 | 375 | */ |
376 | 376 | public function getDatetimeAuthor() |
377 | 377 | { |
@@ -90,7 +90,7 @@ |
||
90 | 90 | * |
91 | 91 | * @param null $commit1 commit 1 |
92 | 92 | * @param null $commit2 commit 2 |
93 | - * @param null $path path |
|
93 | + * @param null|string $path path |
|
94 | 94 | * |
95 | 95 | * @throws \RuntimeException |
96 | 96 | * @throws \Symfony\Component\Process\Exception\InvalidArgumentException |
@@ -54,7 +54,7 @@ |
||
54 | 54 | * @param string $refEnd ending reference |
55 | 55 | * @param null $path path |
56 | 56 | * @param int $limit limit |
57 | - * @param null $offset offset |
|
57 | + * @param integer|null $offset offset |
|
58 | 58 | * @param boolean $firstParent first parent |
59 | 59 | * |
60 | 60 | * @throws \RuntimeException |
@@ -79,7 +79,7 @@ |
||
79 | 79 | * @param \GitElephant\Repository $repository repo |
80 | 80 | * @param array $outputLines output lines from command.log |
81 | 81 | * |
82 | - * @return \GitElephant\Objects\Log |
|
82 | + * @return Tree |
|
83 | 83 | */ |
84 | 84 | public static function createFromOutputLines(Repository $repository, $outputLines) |
85 | 85 | { |
@@ -197,7 +197,7 @@ |
||
197 | 197 | } |
198 | 198 | |
199 | 199 | /** |
200 | - * @param $stash |
|
200 | + * @param string $stash |
|
201 | 201 | * |
202 | 202 | * @return string |
203 | 203 | */ |