@@ -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 | */ |
@@ -146,7 +146,7 @@ discard block |
||
| 146 | 146 | * create a repository from a remote git url, or a local filesystem |
| 147 | 147 | * and save it in a temp folder |
| 148 | 148 | * |
| 149 | - * @param string|Repository $git the git remote url, or the filesystem path |
|
| 149 | + * @param string $git the git remote url, or the filesystem path |
|
| 150 | 150 | * @param null $repositoryPath path |
| 151 | 151 | * @param GitBinary $binary binary |
| 152 | 152 | * @param null $name repository name |
@@ -194,7 +194,7 @@ discard block |
||
| 194 | 194 | /** |
| 195 | 195 | * Stage the working tree content |
| 196 | 196 | * |
| 197 | - * @param string|Object $path the path to store |
|
| 197 | + * @param string $path the path to store |
|
| 198 | 198 | * |
| 199 | 199 | * @throws \RuntimeException |
| 200 | 200 | * @throws \Symfony\Component\Process\Exception\LogicException |
@@ -212,7 +212,7 @@ discard block |
||
| 212 | 212 | /** |
| 213 | 213 | * Unstage a tree content |
| 214 | 214 | * |
| 215 | - * @param string|Object $path the path to unstage |
|
| 215 | + * @param string $path the path to unstage |
|
| 216 | 216 | * |
| 217 | 217 | * @throws \RuntimeException |
| 218 | 218 | * @throws \Symfony\Component\Process\Exception\LogicException |
@@ -230,8 +230,8 @@ discard block |
||
| 230 | 230 | /** |
| 231 | 231 | * Move a file/directory |
| 232 | 232 | * |
| 233 | - * @param string|Object $from source path |
|
| 234 | - * @param string|Object $to destination path |
|
| 233 | + * @param string $from source path |
|
| 234 | + * @param string $to destination path |
|
| 235 | 235 | * |
| 236 | 236 | * @throws \RuntimeException |
| 237 | 237 | * @throws \Symfony\Component\Process\Exception\LogicException |
@@ -250,7 +250,7 @@ discard block |
||
| 250 | 250 | /** |
| 251 | 251 | * Remove a file/directory |
| 252 | 252 | * |
| 253 | - * @param string|Object $path the path to remove |
|
| 253 | + * @param string $path the path to remove |
|
| 254 | 254 | * @param bool $recursive recurse |
| 255 | 255 | * @param bool $force force |
| 256 | 256 | * |
@@ -330,7 +330,7 @@ discard block |
||
| 330 | 330 | } |
| 331 | 331 | |
| 332 | 332 | /** |
| 333 | - * @param TreeishInterface|Commit|string $arg |
|
| 333 | + * @param Commit $arg |
|
| 334 | 334 | * @param array $options |
| 335 | 335 | */ |
| 336 | 336 | public function reset($arg, $options) |
@@ -806,7 +806,7 @@ discard block |
||
| 806 | 806 | * |
| 807 | 807 | * @param string|TreeishInterface|array $ref the treeish to check, as a string, as an object or as an array |
| 808 | 808 | * @param string|Object $path the physical path to the tree relative to the repository root |
| 809 | - * @param int|null $limit limit to n entries |
|
| 809 | + * @param integer $limit limit to n entries |
|
| 810 | 810 | * @param int|null $offset skip n entries |
| 811 | 811 | * @param boolean|false $firstParent skip commits brought in to branch by a merge |
| 812 | 812 | * |
@@ -823,7 +823,7 @@ discard block |
||
| 823 | 823 | * @param string $refStart |
| 824 | 824 | * @param string $refEnd |
| 825 | 825 | * @param string|Object $path the physical path to the tree relative to the repository root |
| 826 | - * @param int|null $limit limit to n entries |
|
| 826 | + * @param integer $limit limit to n entries |
|
| 827 | 827 | * @param int|null $offset skip n entries |
| 828 | 828 | * @param boolean|false $firstParent skip commits brought in to branch by a merge |
| 829 | 829 | * |
@@ -848,7 +848,7 @@ discard block |
||
| 848 | 848 | * Get a log for an object |
| 849 | 849 | * |
| 850 | 850 | * @param \GitElephant\Objects\Object $obj The Object instance |
| 851 | - * @param null|string|\GitElephant\Objects\Branch $branch The branch to read from |
|
| 851 | + * @param string|null $branch The branch to read from |
|
| 852 | 852 | * @param int $limit Limit to n entries |
| 853 | 853 | * @param int|null $offset Skip n entries |
| 854 | 854 | * |
@@ -917,7 +917,7 @@ discard block |
||
| 917 | 917 | * Get a Diff object for a commit with its parent, by default the diff is between the current head and its parent |
| 918 | 918 | * |
| 919 | 919 | * @param \GitElephant\Objects\Commit|string $commit1 A TreeishInterface instance |
| 920 | - * @param \GitElephant\Objects\Commit|string|null $commit2 A TreeishInterface instance |
|
| 920 | + * @param Commit $commit2 A TreeishInterface instance |
|
| 921 | 921 | * @param null|string|Object $path The path to get the diff for or a Object instance |
| 922 | 922 | * |
| 923 | 923 | * @throws \RuntimeException |
@@ -933,7 +933,7 @@ discard block |
||
| 933 | 933 | * Clone a repository |
| 934 | 934 | * |
| 935 | 935 | * @param string $url the repository url (i.e. git://github.com/matteosister/GitElephant.git) |
| 936 | - * @param null $to where to clone the repo |
|
| 936 | + * @param string|null $to where to clone the repo |
|
| 937 | 937 | * |
| 938 | 938 | * @throws \RuntimeException |
| 939 | 939 | * @throws \Symfony\Component\Process\Exception\LogicException |
@@ -1069,7 +1069,7 @@ discard block |
||
| 1069 | 1069 | * output a node content as an array of lines |
| 1070 | 1070 | * |
| 1071 | 1071 | * @param \GitElephant\Objects\Object $obj The Object of type BLOB |
| 1072 | - * @param \GitElephant\Objects\TreeishInterface|string $treeish A treeish object |
|
| 1072 | + * @param null|Branch $treeish A treeish object |
|
| 1073 | 1073 | * |
| 1074 | 1074 | * @throws \RuntimeException |
| 1075 | 1075 | * @throws \Symfony\Component\Process\Exception\LogicException |