Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / drush / drush / commands / core / outputformat / php.inc
diff --git a/vendor/drush/drush/commands/core/outputformat/php.inc b/vendor/drush/drush/commands/core/outputformat/php.inc
deleted file mode 100644 (file)
index 056314f..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-<?php
-
-/**
- * Output formatter 'php'
- *
- * @param $data
- *   The $data parameter is rendered as a serialized php string
- * @param $metadata
- *
- * Code:
- *
- */
-class drush_outputformat_php extends drush_outputformat {
-  function format($input, $metadata) {
-    return serialize($input);
-  }
-}