summaryrefslogtreecommitdiffstats
path: root/src/Core.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Core.php')
-rw-r--r--src/Core.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Core.php b/src/Core.php
index 8783ea8..1d3eeea 100644
--- a/src/Core.php
+++ b/src/Core.php
@@ -13,9 +13,9 @@ class Core
/**
* Whether errors should throw exceptions or just be stored.
*
- * @var bool
- *
* @see static::$errors
+ *
+ * @var bool
*/
public $strict = false;
@@ -26,9 +26,9 @@ class Core
* error might be false positive or a partial result (even a bad one)
* might be needed.
*
- * @var Exception[]
- *
* @see Core::error()
+ *
+ * @var Exception[]
*/
public $errors = [];
@@ -37,7 +37,7 @@ class Core
*
* @param Exception $error the error exception
*
- * @throws Exception throws the exception, if strict mode is enabled
+ * @throws Exception throws the exception, if strict mode is enabled.
*/
public function error($error)
{