@@ -144,7 +144,7 @@ discard block |
||
| 144 | 144 | * create a repository from a remote git url, or a local filesystem |
| 145 | 145 | * and save it in a temp folder |
| 146 | 146 | * |
| 147 | - * @param string|Repository $git the git remote url, or the filesystem path |
|
| 147 | + * @param string $git the git remote url, or the filesystem path |
|
| 148 | 148 | * @param null $repositoryPath path |
| 149 | 149 | * @param GitBinary $binary binary |
| 150 | 150 | * @param null $name repository name |
@@ -192,7 +192,7 @@ discard block |
||
| 192 | 192 | /** |
| 193 | 193 | * Stage the working tree content |
| 194 | 194 | * |
| 195 | - * @param string|Object $path the path to store |
|
| 195 | + * @param string $path the path to store |
|
| 196 | 196 | * |
| 197 | 197 | * @throws \RuntimeException |
| 198 | 198 | * @throws \Symfony\Component\Process\Exception\LogicException |
@@ -210,7 +210,7 @@ discard block |
||
| 210 | 210 | /** |
| 211 | 211 | * Unstage a tree content |
| 212 | 212 | * |
| 213 | - * @param string|Object $path the path to unstage |
|
| 213 | + * @param string $path the path to unstage |
|
| 214 | 214 | * |
| 215 | 215 | * @throws \RuntimeException |
| 216 | 216 | * @throws \Symfony\Component\Process\Exception\LogicException |
@@ -228,8 +228,8 @@ discard block |
||
| 228 | 228 | /** |
| 229 | 229 | * Move a file/directory |
| 230 | 230 | * |
| 231 | - * @param string|Object $from source path |
|
| 232 | - * @param string|Object $to destination path |
|
| 231 | + * @param string $from source path |
|
| 232 | + * @param string $to destination path |
|
| 233 | 233 | * |
| 234 | 234 | * @throws \RuntimeException |
| 235 | 235 | * @throws \Symfony\Component\Process\Exception\LogicException |
@@ -248,7 +248,7 @@ discard block |
||
| 248 | 248 | /** |
| 249 | 249 | * Remove a file/directory |
| 250 | 250 | * |
| 251 | - * @param string|Object $path the path to remove |
|
| 251 | + * @param string $path the path to remove |
|
| 252 | 252 | * @param bool $recursive recurse |
| 253 | 253 | * @param bool $force force |
| 254 | 254 | * |
@@ -328,7 +328,7 @@ discard block |
||
| 328 | 328 | } |
| 329 | 329 | |
| 330 | 330 | /** |
| 331 | - * @param TreeishInterface|Commit|string $arg |
|
| 331 | + * @param Commit $arg |
|
| 332 | 332 | * @param array $options |
| 333 | 333 | */ |
| 334 | 334 | public function reset($arg,$options) |
@@ -804,7 +804,7 @@ discard block |
||
| 804 | 804 | * |
| 805 | 805 | * @param string|TreeishInterface|array $ref the treeish to check, as a string, as an object or as an array |
| 806 | 806 | * @param string|Object $path the physical path to the tree relative to the repository root |
| 807 | - * @param int|null $limit limit to n entries |
|
| 807 | + * @param integer $limit limit to n entries |
|
| 808 | 808 | * @param int|null $offset skip n entries |
| 809 | 809 | * @param boolean|false $firstParent skip commits brought in to branch by a merge |
| 810 | 810 | * |
@@ -821,7 +821,7 @@ discard block |
||
| 821 | 821 | * @param string $refStart |
| 822 | 822 | * @param string $refEnd |
| 823 | 823 | * @param string|Object $path the physical path to the tree relative to the repository root |
| 824 | - * @param int|null $limit limit to n entries |
|
| 824 | + * @param integer $limit limit to n entries |
|
| 825 | 825 | * @param int|null $offset skip n entries |
| 826 | 826 | * @param boolean|false $firstParent skip commits brought in to branch by a merge |
| 827 | 827 | * |
@@ -846,7 +846,7 @@ discard block |
||
| 846 | 846 | * Get a log for an object |
| 847 | 847 | * |
| 848 | 848 | * @param \GitElephant\Objects\Object $obj The Object instance |
| 849 | - * @param null|string|\GitElephant\Objects\Branch $branch The branch to read from |
|
| 849 | + * @param string|null $branch The branch to read from |
|
| 850 | 850 | * @param int $limit Limit to n entries |
| 851 | 851 | * @param int|null $offset Skip n entries |
| 852 | 852 | * |
@@ -915,7 +915,7 @@ discard block |
||
| 915 | 915 | * Get a Diff object for a commit with its parent, by default the diff is between the current head and its parent |
| 916 | 916 | * |
| 917 | 917 | * @param \GitElephant\Objects\Commit|string $commit1 A TreeishInterface instance |
| 918 | - * @param \GitElephant\Objects\Commit|string|null $commit2 A TreeishInterface instance |
|
| 918 | + * @param Commit $commit2 A TreeishInterface instance |
|
| 919 | 919 | * @param null|string|Object $path The path to get the diff for or a Object instance |
| 920 | 920 | * |
| 921 | 921 | * @throws \RuntimeException |
@@ -931,7 +931,7 @@ discard block |
||
| 931 | 931 | * Clone a repository |
| 932 | 932 | * |
| 933 | 933 | * @param string $url the repository url (i.e. git://github.com/matteosister/GitElephant.git) |
| 934 | - * @param null $to where to clone the repo |
|
| 934 | + * @param string|null $to where to clone the repo |
|
| 935 | 935 | * |
| 936 | 936 | * @throws \RuntimeException |
| 937 | 937 | * @throws \Symfony\Component\Process\Exception\LogicException |
@@ -1067,7 +1067,7 @@ discard block |
||
| 1067 | 1067 | * output a node content as an array of lines |
| 1068 | 1068 | * |
| 1069 | 1069 | * @param \GitElephant\Objects\Object $obj The Object of type BLOB |
| 1070 | - * @param \GitElephant\Objects\TreeishInterface|string $treeish A treeish object |
|
| 1070 | + * @param null|Branch $treeish A treeish object |
|
| 1071 | 1071 | * |
| 1072 | 1072 | * @throws \RuntimeException |
| 1073 | 1073 | * @throws \Symfony\Component\Process\Exception\LogicException |