From b2faa6d59a040666cdc74fcc16fe225ce5d4ba4a Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Sun, 16 Jun 2013 07:56:07 +0200 Subject: [PATCH] move content fetcher class --- src/stapibas/Cli.php | 2 +- .../{Pingback/ContentFetcher.php => Content/Fetcher.php} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename src/stapibas/{Pingback/ContentFetcher.php => Content/Fetcher.php} (98%) diff --git a/src/stapibas/Cli.php b/src/stapibas/Cli.php index 02942e4..10b6957 100644 --- a/src/stapibas/Cli.php +++ b/src/stapibas/Cli.php @@ -125,7 +125,7 @@ class Cli \Console_CommandLine_Result $command, Dependencies $deps ) { //fetch content of pingback source pages - $cf = new Pingback_ContentFetcher($deps); + $cf = new Content_Fetcher($deps); $cf->updateAll(); //FIXME diff --git a/src/stapibas/Pingback/ContentFetcher.php b/src/stapibas/Content/Fetcher.php similarity index 98% rename from src/stapibas/Pingback/ContentFetcher.php rename to src/stapibas/Content/Fetcher.php index aa9abcc..108a703 100644 --- a/src/stapibas/Pingback/ContentFetcher.php +++ b/src/stapibas/Content/Fetcher.php @@ -1,7 +1,7 @@