X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fdrush%2Fdrush%2Ftests%2Fresources%2Fmodules%2Fd8%2Fwoot%2Fsrc%2FWootManager.php;fp=vendor%2Fdrush%2Fdrush%2Ftests%2Fresources%2Fmodules%2Fd8%2Fwoot%2Fsrc%2FWootManager.php;h=ecf0071f817d293ad1d324465f1be3ab56582776;hp=9802835585c0b0687ec36dd369e67df72ac09ac4;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0 diff --git a/vendor/drush/drush/tests/resources/modules/d8/woot/src/WootManager.php b/vendor/drush/drush/tests/resources/modules/d8/woot/src/WootManager.php index 980283558..ecf0071f8 100644 --- a/vendor/drush/drush/tests/resources/modules/d8/woot/src/WootManager.php +++ b/vendor/drush/drush/tests/resources/modules/d8/woot/src/WootManager.php @@ -28,7 +28,7 @@ class WootManager * * @var \Drupal\Core\Session\AccountInterface */ - protected $currentUser; + protected $currentUser; /** * Constructs the default content manager. @@ -36,9 +36,10 @@ class WootManager * @param \Drupal\Core\Session|AccountInterface $current_user * The current user. */ - public function __construct(AccountInterface $current_user) { - $this->currentUser = $current_user; - } + public function __construct(AccountInterface $current_user) + { + $this->currentUser = $current_user; + } /** * Woof mightily. Note that we can include commands directly @@ -47,8 +48,8 @@ class WootManager * @command woof * @aliases wf */ - public function woof() - { - return 'Woof!'; - } + public function woof() + { + return 'Woof!'; + } }