33 * PHP library for handling exceptions and errors.
44 *
55 * @author Josantonius <hello@josantonius.com>
6- * @copyright 2017 (c) Josantonius - PHP-DataType
6+ * @copyright 2016 - 2018 (c) Josantonius - PHP-ErrorHandler
77 * @license https://opensource.org/licenses/MIT - The MIT License (MIT)
88 * @link https://github.com/Josantonius/PHP-ErrorHandler
99 * @since 1.1.5
1414
1515/**
1616 * Tests class for ErrorHandler library.
17- *
18- * @since 1.1.5
1917 */
2018final class ErrorHandlerTest extends TestCase
2119{
@@ -30,8 +28,6 @@ final class ErrorHandlerTest extends TestCase
3028
3129 /**
3230 * Set up.
33- *
34- * @since 1.1.5
3531 */
3632 public function setUp ()
3733 {
@@ -47,14 +43,14 @@ public function setUp()
4743 */
4844 public function testIsInstanceOfErrorHandler ()
4945 {
50- $ actual = $ this ->ErrorHandler ;
51- $ this ->assertInstanceOf ('Josantonius\ErrorHandler\ErrorHandler ' , $ actual );
46+ $ this ->assertInstanceOf (
47+ 'Josantonius\ErrorHandler\ErrorHandler ' ,
48+ $ this ->ErrorHandler
49+ );
5250 }
5351
5452 /**
5553 * Check if custom exception handler is activated.
56- *
57- * @since 1.1.5
5854 */
5955 public function testIfCustomExceptionHandlerIsActivated ()
6056 {
@@ -68,8 +64,6 @@ public function testIfCustomExceptionHandlerIsActivated()
6864
6965 /**
7066 * Check if custom exception handler is activated.
71- *
72- * @since 1.1.5
7367 */
7468 public function testIfCustomErrorHandlerIsActivated ()
7569 {
@@ -83,8 +77,6 @@ public function testIfCustomErrorHandlerIsActivated()
8377
8478 /**
8579 * Test exception handler.
86- *
87- * @since 1.1.5
8880 */
8981 public function testException ()
9082 {
@@ -95,8 +87,6 @@ public function testException()
9587
9688 /**
9789 * Test exception handler with custom methods and not show default view.
98- *
99- * @since 1.1.5
10090 */
10191 public function testExceptionWithCustomMethodsWithoutShowDefaultView ()
10292 {
@@ -114,8 +104,6 @@ public function testExceptionWithCustomMethodsWithoutShowDefaultView()
114104
115105 /**
116106 * Test exception handler with custom methods and show default view.
117- *
118- * @since 1.1.5
119107 */
120108 public function testExceptionWithCustomMethodsAndShowDefaultView ()
121109 {
@@ -133,8 +121,6 @@ public function testExceptionWithCustomMethodsAndShowDefaultView()
133121
134122 /**
135123 * Test error handler.
136- *
137- * @since 1.1.5
138124 */
139125 public function testError ()
140126 {
@@ -145,8 +131,6 @@ public function testError()
145131
146132 /**
147133 * Test error handler with custom methods and not show default view.
148- *
149- * @since 1.1.5
150134 */
151135 public function testErrorWithCustomMethodsWithoutShowDefaultView ()
152136 {
@@ -164,8 +148,6 @@ public function testErrorWithCustomMethodsWithoutShowDefaultView()
164148
165149 /**
166150 * Test error handler with custom methods and show default view.
167- *
168- * @since 1.1.5
169151 */
170152 public function testErrorWithCustomMethodsAndShowDefaultView ()
171153 {
@@ -183,8 +165,6 @@ public function testErrorWithCustomMethodsAndShowDefaultView()
183165
184166 /**
185167 * Get error type.
186- *
187- * @since 1.1.5
188168 */
189169 public function testGetErrorType ()
190170 {
0 commit comments