From: Christian Weiske Date: Sun, 16 Jun 2013 05:56:07 +0000 (+0200) Subject: move content fetcher class X-Git-Url: https://git.cweiske.de/stapibas.git/commitdiff_plain/b2faa6d59a040666cdc74fcc16fe225ce5d4ba4a?hp=46633b4a98024c670eeb3e586e621b31bb6ec100 move content fetcher class --- 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 @@