Skip to content

Commit

Permalink
Remove return type #2
Browse files Browse the repository at this point in the history
  • Loading branch information
elvishp2006 committed Feb 22, 2019
1 parent 7710821 commit f4e55de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/Rest_Api_Select_Field.php
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public function get_endpoint_search_param() {
*
* @return array
*/
public function get_endpoint_params() : array {
public function get_endpoint_params() {
return $this->endpoint_params;
}

Expand All @@ -144,7 +144,7 @@ public function get_endpoint_params() : array {
* @param array $value Endpoint params.
* @return self
*/
public function set_endpoint_params( $value ) : self {
public function set_endpoint_params( $value ) {
$this->endpoint_params = $value;
return $this;
}
Expand Down

0 comments on commit f4e55de

Please sign in to comment.