Completed
Push — master ( f165ab...b465e2 )
by Thomas
02:42
created
src/model/AbstractPhpStruct.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -117,8 +117,7 @@  discard block
 block discarded – undo
117 117
 	/**
118 118
 	 *  Declares multiple use statements at once.
119 119
 	 */
120
-	public function declareUses()
121
- 	{
120
+	public function declareUses() {
122 121
  		foreach (func_get_args() as $name) {
123 122
  			$this->declareUse($name);
124 123
  		}
@@ -136,8 +135,7 @@  discard block
 block discarded – undo
136 135
  	 *
137 136
  	 * @return string
138 137
  	 */
139
- 	public function declareUse($fullClassName, $alias = null)
140
-	{
138
+ 	public function declareUse($fullClassName, $alias = null) {
141 139
  		$fullClassName = trim($fullClassName, '\\');
142 140
  		if (!$this->hasUseStatement($fullClassName)) {
143 141
  			$this->addUseStatement($fullClassName, $alias);
Please login to merge, or discard this patch.