Skip to content

Commit ec06e3f

Browse files
committed
fix add 2 space after @param
1 parent 2b55e08 commit ec06e3f

6 files changed

+16
-16
lines changed

library/Zend/Loader/AutoloaderFactory.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ public static function getRegisteredAutoloaders()
127127
/**
128128
* Retrieves an autoloader by class name
129129
*
130-
* @param string $class
130+
* @param string $class
131131
* @return SplAutoloader
132132
* @throws Exception\InvalidArgumentException for non-registered class
133133
*/
@@ -204,8 +204,8 @@ protected static function getStandardAutoloader()
204204
* @see https://bugs.php.net/bug.php?id=53727
205205
* @see https://github.com/zendframework/zf2/pull/1807
206206
*
207-
* @param string $className
208-
* @param string $type
207+
* @param string $className
208+
* @param string $type
209209
* @return bool
210210
*/
211211
protected static function isSubclassOf($className, $type)

library/Zend/Loader/ClassMapAutoloader.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ protected function loadMapFromFile($location)
195195
* Resolve the real_path() to a file within a phar.
196196
*
197197
* @see https://bugs.php.net/bug.php?id=52769
198-
* @param string $path
198+
* @param string $path
199199
* @return string
200200
*/
201201
public static function realPharPath($path)

library/Zend/Loader/ModuleAutoloader.php

+8-8
Original file line numberDiff line numberDiff line change
@@ -161,8 +161,8 @@ public function autoload($class)
161161
/**
162162
* loadModuleFromDir
163163
*
164-
* @param string $dirPath
165-
* @param string $class
164+
* @param string $dirPath
165+
* @param string $class
166166
* @return mixed
167167
* False [if unable to load $class]
168168
* get_class($class) [if $class is successfully loaded]
@@ -184,8 +184,8 @@ protected function loadModuleFromDir($dirPath, $class)
184184
/**
185185
* loadModuleFromPhar
186186
*
187-
* @param string $pharPath
188-
* @param string $class
187+
* @param string $pharPath
188+
* @param string $class
189189
* @return mixed
190190
* False [if unable to load $class]
191191
* get_class($class) [if $class is successfully loaded]
@@ -261,7 +261,7 @@ public function unregister()
261261
/**
262262
* registerPaths
263263
*
264-
* @param array|Traversable $paths
264+
* @param array|Traversable $paths
265265
* @throws \InvalidArgumentException
266266
* @return ModuleAutoloader
267267
*/
@@ -289,8 +289,8 @@ public function registerPaths($paths)
289289
/**
290290
* registerPath
291291
*
292-
* @param string $path
293-
* @param bool|string $moduleName
292+
* @param string $path
293+
* @param bool|string $moduleName
294294
* @throws \InvalidArgumentException
295295
* @return ModuleAutoloader
296296
*/
@@ -325,7 +325,7 @@ public function getPaths()
325325
/**
326326
* Returns the base module name from the path to a phar
327327
*
328-
* @param string $pharPath
328+
* @param string $pharPath
329329
* @return string
330330
*/
331331
protected function pharFileToModuleName($pharPath)

library/Zend/Loader/PluginClassLoader.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ public function registerPlugins($map)
147147
/**
148148
* Unregister a short name lookup
149149
*
150-
* @param mixed $shortName
150+
* @param mixed $shortName
151151
* @return PluginClassLoader
152152
*/
153153
public function unregisterPlugin($shortName)

library/Zend/Loader/PluginClassLocator.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function registerPlugin($shortName, $className);
3232
/**
3333
* Unregister a short name lookup
3434
*
35-
* @param mixed $shortName
35+
* @param mixed $shortName
3636
* @return void
3737
*/
3838
public function unregisterPlugin($shortName);

library/Zend/Loader/StandardAutoloader.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -271,8 +271,8 @@ protected function transformClassNameToFilename($class, $directory)
271271
/**
272272
* Load a class, based on its type (namespaced or prefixed)
273273
*
274-
* @param string $class
275-
* @param string $type
274+
* @param string $class
275+
* @param string $type
276276
* @return bool|string
277277
* @throws Exception\InvalidArgumentException
278278
*/

0 commit comments

Comments
 (0)