Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / drush / drush / tests / resources / queue_script-D8.php
diff --git a/vendor/drush/drush/tests/resources/queue_script-D8.php b/vendor/drush/drush/tests/resources/queue_script-D8.php
deleted file mode 100644 (file)
index 679a2a3..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-<?php
-
-use Drupal\aggregator\Entity\Feed;
-
-// Create a new feed.
-$feed = Feed::create(array(
-  'title' => 'test',
-  'url' => 'http://drupal.org/project/issues/rss/drupal?categories=All',
-  'refresh' => 3600,
-));
-$feed->save();
-
-// Let cron call QueueInterface::createItem() for us.
-aggregator_cron();