Browse Source

Fix wrapping.

Mark Story 6 years ago
parent
commit
8ee7a6aed7
1 changed files with 1 additions and 4 deletions
  1. 1 4
      src/TestSuite/Constraint/Email/MailSentWith.php

+ 1 - 4
src/TestSuite/Constraint/Email/MailSentWith.php

@@ -71,10 +71,7 @@ class MailSentWith extends MailConstraintBase
      */
     protected function getValue($email)
     {
-        $viewBuilderMethods = [
-            'template', 'layout', 'helpers',
-            'theme',
-        ];
+        $viewBuilderMethods = ['template', 'layout', 'helpers', 'theme'];
         if (in_array($this->method, $viewBuilderMethods, true)) {
             return $email->viewBuilder()->{'get' . ucfirst($this->method)}();
         }