for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace hipanel\tests\_support\Page;
class Authenticated
{
/**
* @var \AcceptanceTester
*/
protected $tester;
public function __construct(\AcceptanceTester $I)
$this->tester = $I;
$this->login();
}
protected function login()
$this->tester->login();