Skip to content

Commit

Permalink
Merge pull request #38 from experius/feature/added_storeview_column
Browse files Browse the repository at this point in the history
[FEATURE][IN23-284] Fixed typo's
  • Loading branch information
DRdevil27 authored Mar 22, 2024
2 parents 32c7f03 + de703f5 commit f4338b3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Api/Data/PageNotFoundInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ interface PageNotFoundInterface
{

const TO_URL = 'to_url';
const STORE_D = 'store_id';
const STORE_ID = 'store_id';
const COUNT_REDIRECT = 'count_redirect';
const LAST_VISITED = 'last_visited';
const COUNT = 'count';
Expand Down Expand Up @@ -110,7 +110,7 @@ public function setLastVisited($last_visited);
public function getStoreId();

/**
* Set last_visited
* Set store_id
* @param int $store_id
* @return \Experius\PageNotFound\Api\Data\PageNotFoundInterface
*/
Expand Down
4 changes: 2 additions & 2 deletions Model/PageNotFound.php
Original file line number Diff line number Diff line change
Expand Up @@ -139,12 +139,12 @@ public function getStoreId()
}

/**
* Set last_visited
* Set store_id
* @param int $store_id
* @return \Experius\PageNotFound\Api\Data\PageNotFoundInterface
*/
public function setStoreId($store_id)
{
return $this->setData(self::STORE_D, $store_id);
return $this->setData(self::STORE_ID, $store_id);
}
}

0 comments on commit f4338b3

Please sign in to comment.