diff --git a/tests/ViewTest.php b/tests/ViewTest.php index 2b95342..8a8dfc0 100644 --- a/tests/ViewTest.php +++ b/tests/ViewTest.php @@ -66,6 +66,7 @@ public function testRender() { $view = $this->createView(); $this->assertEquals( + // phpcs:ignore Generic.Files.LineLength "\n\n \n \n text content\n
\n \n \n\n", $view->render() ); @@ -127,6 +128,7 @@ public function testRequireToVar() $view = $this->createView(); $data = $view->requireToVar(__DIR__ . '/testData/view.php'); $this->assertEquals( + // phpcs:ignore Generic.Files.LineLength "\n\n \n \n text content\n
\n \n \n\n", $data ); @@ -158,7 +160,8 @@ public function render() */ public function testRenderComponent() { - $component = new class () extends \Genius257\View\Component { + $component = new class () extends \Genius257\View\Component + { public function render() {