Test Failed
Branch develop (82f08a)
by Andreas
15:40
created
vendor/phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Files/Item.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -21,10 +21,10 @@
 block discarded – undo
21 21
 
22 22
 class Item implements ExtendedCacheItemInterface
23 23
 {
24
-    use TaggableCacheItemTrait;
24
+	use TaggableCacheItemTrait;
25 25
 
26
-    protected function getDriverClass(): string
27
-    {
28
-        return Driver::class;
29
-    }
26
+	protected function getDriverClass(): string
27
+	{
28
+		return Driver::class;
29
+	}
30 30
 }
Please login to merge, or discard this patch.
vendor/phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Predis/Item.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -21,10 +21,10 @@
 block discarded – undo
21 21
 
22 22
 class Item implements ExtendedCacheItemInterface
23 23
 {
24
-    use TaggableCacheItemTrait;
24
+	use TaggableCacheItemTrait;
25 25
 
26
-    protected function getDriverClass(): string
27
-    {
28
-        return Driver::class;
29
-    }
26
+	protected function getDriverClass(): string
27
+	{
28
+		return Driver::class;
29
+	}
30 30
 }
Please login to merge, or discard this patch.
vendor/phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devnull/Item.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -24,10 +24,10 @@
 block discarded – undo
24 24
  */
25 25
 class Item implements ExtendedCacheItemInterface
26 26
 {
27
-    use TaggableCacheItemTrait;
27
+	use TaggableCacheItemTrait;
28 28
 
29
-    protected function getDriverClass(): string
30
-    {
31
-        return Driver::class;
32
-    }
29
+	protected function getDriverClass(): string
30
+	{
31
+		return Driver::class;
32
+	}
33 33
 }
Please login to merge, or discard this patch.
vendor/phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zendshm/Item.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -21,10 +21,10 @@
 block discarded – undo
21 21
 
22 22
 class Item implements ExtendedCacheItemInterface
23 23
 {
24
-    use TaggableCacheItemTrait;
24
+	use TaggableCacheItemTrait;
25 25
 
26
-    protected function getDriverClass(): string
27
-    {
28
-        return Driver::class;
29
-    }
26
+	protected function getDriverClass(): string
27
+	{
28
+		return Driver::class;
29
+	}
30 30
 }
Please login to merge, or discard this patch.
vendor/phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Sqlite/Item.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -21,10 +21,10 @@
 block discarded – undo
21 21
 
22 22
 class Item implements ExtendedCacheItemInterface
23 23
 {
24
-    use TaggableCacheItemTrait;
24
+	use TaggableCacheItemTrait;
25 25
 
26
-    protected function getDriverClass(): string
27
-    {
28
-        return Driver::class;
29
-    }
26
+	protected function getDriverClass(): string
27
+	{
28
+		return Driver::class;
29
+	}
30 30
 }
Please login to merge, or discard this patch.
server/includes/modules/class.itemmodule.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -727,10 +727,10 @@
 block discarded – undo
727 727
 		/**
728 728
 		 * Function which copies or moves one or more items.
729 729
 		 *
730
-	 * @param resource $store         MAPI Message Store Object
731
-	 * @param string   $parententryid entryid of the folder
732
-	 * @param mixed    $entryids      list of entryids which will be copied or moved (in binary format)
733
-	 * @param array    $action        the action data, sent by the client
730
+		 * @param resource $store         MAPI Message Store Object
731
+		 * @param string   $parententryid entryid of the folder
732
+		 * @param mixed    $entryids      list of entryids which will be copied or moved (in binary format)
733
+		 * @param array    $action        the action data, sent by the client
734 734
 		 *
735 735
 		 * @return bool true on success or false on failure
736 736
 		 */
Please login to merge, or discard this patch.