Completed
Push — master ( 13eb4d...6f4a41 )
by Thomas
02:46
created
src/model/PhpParameter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
 		$docblock = new Docblock($ref->getDeclaringFunction());
65 65
 		
66 66
 		$params = $docblock->getTags('param');
67
-		$tag = $params->find($ref->name, function (ParamTag $t, $name) {
67
+		$tag = $params->find($ref->name, function(ParamTag $t, $name) {
68 68
 			return $t->getVariable() == '$' . $name;
69 69
 		});
70 70
 		
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
 	 */
124 124
 	public function getDocblockTag() {
125 125
 		return ParamTag::create()
126
-			->setType($this->getType() ?  : 'mixed')
126
+			->setType($this->getType() ?: 'mixed')
127 127
 			->setVariable($this->getName())
128 128
 			->setDescription($this->getTypeDescription());
129 129
 	}
Please login to merge, or discard this patch.