Ejemplo n.º 1
0
 /**
  * BasePage constructor.
  * @param HttpRequestInterface $http
  * @param $word
  */
 public function __construct(HttpRequestInterface $http)
 {
     parent::__construct($http);
     $this->base_url = 'http://www.vietnamworks.com';
     $this->sub_url = '/login';
 }
Ejemplo n.º 2
0
 /**
  * BasePage constructor.
  * @param HttpRequestInterface $http
  */
 public function __construct(HttpRequestInterface $http)
 {
     parent::__construct($http);
     $this->sub_url = '/ajax/thing/cell/upload_file/';
 }
Ejemplo n.º 3
0
 /**
  * BasePage constructor.
  * @param HttpRequestInterface $http
  */
 public function __construct(HttpRequestInterface $http)
 {
     parent::__construct($http);
     $this->base_url = 'https://www.memrise.com';
     $this->sub_url = '/login/';
 }
Ejemplo n.º 4
0
 /**
  * BasePage constructor.
  * @param HttpRequestInterface $http
  * @param CourseInfo $course
  * @param $word
  */
 public function __construct(HttpRequestInterface $http, CourseInfo $course, $word)
 {
     parent::__construct($http);
     $this->course = $course;
     $this->word = $word;
 }