Skip to content
This repository has been archived by the owner on Nov 24, 2021. It is now read-only.

Commit

Permalink
Code checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
webeweb committed Nov 24, 2021
1 parent ade025d commit a9ece3a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Request/Adresse/AbstractCsvRequest.php
Expand Up @@ -32,6 +32,7 @@ abstract class AbstractCsvRequest extends AbstractRequest {
*/
public function __construct(string $data = null) {
parent::__construct();

$this->setData($data);
}
}
1 change: 1 addition & 0 deletions src/Request/Adresse/ReverseRequest.php
Expand Up @@ -41,6 +41,7 @@ class ReverseRequest extends AbstractRequest {
*/
public function __construct(float $lat = null, float $lon = null) {
parent::__construct();

$this->setLat($lat);
$this->setLon($lon);
}
Expand Down
1 change: 1 addition & 0 deletions src/Request/Adresse/SearchCsvRequest.php
Expand Up @@ -47,6 +47,7 @@ class SearchCsvRequest extends AbstractCsvRequest {
*/
public function __construct(string $data = null) {
parent::__construct($data);

$this->setColumns([]);
$this->setResultColumns([]);
}
Expand Down
1 change: 1 addition & 0 deletions src/Request/Adresse/SearchRequest.php
Expand Up @@ -100,6 +100,7 @@ class SearchRequest extends AbstractRequest {
*/
public function __construct(string $q = null) {
parent::__construct();

$this->setQ($q);
}

Expand Down

0 comments on commit a9ece3a

Please sign in to comment.