diff --git a/src/Core.php b/src/Core.php index 438c16a..586255b 100644 --- a/src/Core.php +++ b/src/Core.php @@ -3,16 +3,11 @@ namespace spekulatius; /** - * This class organizes mostly. For individual functionality please check the related traits. + * This class organizes mostly. For individual functionality check the related traits please. */ class Core { - /** - * Shared simple parsers. - */ - use UsesParsers; - /** * Url related helpers. */ @@ -33,6 +28,11 @@ class Core */ use UsesContent; + /** + * Shared simple parsers for XML, JSON and CSV. + */ + use UsesParsers; + /** * This contains the feeds-related selectors and parsers. */ diff --git a/websites/examples/scrape-feeds.md b/websites/examples/scrape-feeds.md index a80571f..9d3305d 100644 --- a/websites/examples/scrape-feeds.md +++ b/websites/examples/scrape-feeds.md @@ -11,7 +11,7 @@ PHPScraper can identify and process feeds (RSS feeds, sitemaps, etc.) for you. T ## Identify RSS Feed URLs -Websites can define RSS feeds in the head section of their markup. PHPScraper allows to identify the RSS feeds of the current page using `rssUrls`: +Websites can define RSS feeds in the head section of their markup. PHPScraper allows to identify any RSS feeds of the current page using `rssUrls`: ```php $web = new \spekulatius\phpscraper;