Completed
Pull Request — master (#193)
by
unknown
52:49
created
Classes/DataHandler/AbstractDataHandler.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -15,19 +15,19 @@
 block discarded – undo
15 15
 abstract class AbstractDataHandler implements DataHandlerInterface, SingletonInterface
16 16
 {
17 17
 
18
-    /**
19
-     * @var array
20
-     */
21
-    protected $errorMessages = [];
18
+	/**
19
+	 * @var array
20
+	 */
21
+	protected $errorMessages = [];
22 22
 
23
-    /**
24
-     * Return error that have occurred while processing the data.
25
-     *
26
-     * @return array
27
-     */
28
-    public function getErrorMessages()
29
-    {
30
-        return $this->errorMessages;
31
-    }
23
+	/**
24
+	 * Return error that have occurred while processing the data.
25
+	 *
26
+	 * @return array
27
+	 */
28
+	public function getErrorMessages()
29
+	{
30
+		return $this->errorMessages;
31
+	}
32 32
 
33 33
 }
Please login to merge, or discard this patch.