Completed
Push — next ( d59298...80f341 )
by Thomas
06:20 queued 01:49
created
htdocs/lib2/edithelper.inc.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
  * @param $oldDescMode
32 32
  * @param $descMode
33 33
  * @param $text
34
- * @return mixed|string
34
+ * @return string
35 35
  */
36 36
 function processEditorInput($oldDescMode, $descMode, $text, &$representText)
37 37
 {
@@ -54,9 +54,9 @@  discard block
 block discarded – undo
54 54
 
55 55
 /**
56 56
  * @param $text
57
- * @param $texthtml0
57
+ * @param boolean $texthtml0
58 58
  *
59
- * @return mixed|string
59
+ * @return string
60 60
  */
61 61
 function html2plaintext($text, $texthtml0)
62 62
 {
Please login to merge, or discard this patch.
htdocs_symfony/src/Entity/SecurityRolesEntity.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -6,18 +6,18 @@
 block discarded – undo
6 6
 
7 7
 class SecurityRolesEntity extends AbstractEntity
8 8
 {
9
-	/** @var int */
10
-	public $id;
9
+    /** @var int */
10
+    public $id;
11 11
 
12
-	/** @var string */
13
-	public $role;
12
+    /** @var string */
13
+    public $role;
14 14
 
15 15
 
16
-	/**
17
-	 * @return bool
18
-	 */
19
-	public function isNew(): bool
20
-	{
21
-		return $this->id === null;
22
-	}
16
+    /**
17
+     * @return bool
18
+     */
19
+    public function isNew(): bool
20
+    {
21
+        return $this->id === null;
22
+    }
23 23
 }
Please login to merge, or discard this patch.
htdocs_symfony/src/Controller/App/KitchensinkController.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function index(): Response
15 15
     {
16
-       return $this->render('kitchensink/index.html.twig');
16
+        return $this->render('kitchensink/index.html.twig');
17 17
     }
18 18
 
19 19
     /**
Please login to merge, or discard this patch.