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

Make PubSub functions useable by child classes #1507

Merged
merged 1 commit into from Sep 8, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions Idno/Core/PubSubHubbub.php
Expand Up @@ -143,7 +143,7 @@ function registerPages()
* @param $page optionally, the contents of the page at $url
* @todo replace this with xpath.
*/
private function discoverHubs($url, $page = '')
protected function discoverHubs($url, $page = '')
{

$hubs = array();
Expand Down Expand Up @@ -188,7 +188,7 @@ private function discoverHubs($url, $page = '')
* @param type $url
* @return type
*/
private function findFeed($url, $data = null)
protected function findFeed($url, $data = null)
{
$feed = null;

Expand All @@ -212,7 +212,7 @@ private function findFeed($url, $data = null)
* This method will find a link self on a feed, finding the feed first
* @param type $url
*/
private function findSelf($url)
protected function findSelf($url)
{

$self = null;
Expand Down