Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[5.2] Remove the not needed getPathway in the SiteApplication class #43385

Open
wants to merge 2 commits into
base: 5.2-dev
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
not needed
there is no call in core with params so it should be save to remove
  • Loading branch information
rdeutz committed Apr 27, 2024
commit 09af347a036dd39a9ac35a04558690bc6e4554f4
15 changes: 0 additions & 15 deletions libraries/src/Application/SiteApplication.php
Original file line number Diff line number Diff line change
Expand Up @@ -362,21 +362,6 @@ public function getParams($option = null)
return $params[$hash];
}

/**
* Return a reference to the Pathway object.
*
* @param string $name The name of the application.
* @param array $options An optional associative array of configuration settings.
*
* @return Pathway A Pathway object
*
* @since 3.2
*/
public function getPathway($name = 'site', $options = [])
{
return parent::getPathway($name, $options);
}

/**
* Return a reference to the Router object.
*
Expand Down