Completed
Push — master ( 6579a1...2c6b7a )
by smiley
02:37
created
src/Modules/BaseModuleInterface.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
 	 * @param string $name     the desired attributes name
85 85
 	 * @param mixed  $default  [optional] a default value in case the attribute isn't set, defaults to false
86 86
 	 *
87
-	 * @return mixed the attribute's value in case it exists, otherwise $default
87
+	 * @return string the attribute's value in case it exists, otherwise $default
88 88
 	 */
89 89
 	public function getAttribute(string $name, $default = false);
90 90
 
Please login to merge, or discard this patch.
src/Traits/ClassLoaderTrait.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,8 @@
 block discarded – undo
32 32
 	 * @return object of type $interface
33 33
 	 * @throws \chillerlan\bbcode\BBCodeException
34 34
 	 */
35
-	protected function __loadClass(string $class, string $interface, ...$params){ // phpDocumentor stumbles across the ... syntax
35
+	protected function __loadClass(string $class, string $interface, ...$params){
36
+// phpDocumentor stumbles across the ... syntax
36 37
 		if(class_exists($class)){
37 38
 			$reflectionClass = new ReflectionClass($class);
38 39
 
Please login to merge, or discard this patch.