Skip to content

Commit

Permalink
fixing Coder Sniffer issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
cisvarun committed Mar 1, 2016
1 parent bcb417d commit a37f68d
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/Form/ProtectedPagesSettingForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* @file
* Contains \Drupal\protected_pages\Form\ProtectedPagesSettingForm.
*/

namespace Drupal\protected_pages\Form;

use Drupal\Core\Form\FormStateInterface;
Expand Down Expand Up @@ -79,10 +80,7 @@ public function __construct(MailManagerInterface $mail_manager, EmailValidator $
*/
public static function create(ContainerInterface $container) {
return new static(
$container->get('plugin.manager.mail'),
$container->get('email.validator'),
$container->get('renderer'),
$container->get('password')
$container->get('plugin.manager.mail'), $container->get('email.validator'), $container->get('renderer'), $container->get('password')
);
}

Expand Down Expand Up @@ -264,4 +262,4 @@ public function submitForm(array &$form, FormStateInterface $form_state) {
return parent::submitForm($form, $form_state);
}

}
}

0 comments on commit a37f68d

Please sign in to comment.