Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / drush / drush / lib / Drush / Psysh / Caster.php
diff --git a/vendor/drush/drush/lib/Drush/Psysh/Caster.php b/vendor/drush/drush/lib/Drush/Psysh/Caster.php
deleted file mode 100644 (file)
index adfa901..0000000
+++ /dev/null
@@ -1,96 +0,0 @@
-<?php
-
-/**
- * @file
- * Contains \Drush\Psysh\Caster.
- */
-
-namespace Drush\Psysh;
-
-use Symfony\Component\VarDumper\Caster\Caster as BaseCaster;
-
-/**
- * Caster class for VarDumper casters for the shell.
- */
-class Caster {
-
-  /**
-   * Casts \Drupal\Core\Entity\ContentEntityInterface classes.
-   */
-  public static function castContentEntity($entity, $array, $stub, $isNested) {
-    if (!$isNested) {
-      foreach ($entity as $property => $item) {
-        $array[BaseCaster::PREFIX_PROTECTED . $property] = $item;
-      }
-    }
-
-    return $array;
-  }
-
-  /**
-   * Casts \Drupal\Core\Field\FieldItemListInterface classes.
-   */
-  public static function castFieldItemList($list_item, $array, $stub, $isNested) {
-    if (!$isNested) {
-      foreach ($list_item as $delta => $item) {
-        $array[BaseCaster::PREFIX_VIRTUAL . $delta] = $item;
-      }
-    }
-
-    return $array;
-  }
-
-  /**
-   * Casts \Drupal\Core\Field\FieldItemInterface classes.
-   */
-  public static function castFieldItem($item, $array, $stub, $isNested) {
-    if (!$isNested) {
-      $array[BaseCaster::PREFIX_VIRTUAL . 'value'] = $item->getValue();
-    }
-
-    return $array;
-  }
-
-  /**
-   * Casts \Drupal\Core\Config\Entity\ConfigEntityInterface classes.
-   */
-  public static function castConfigEntity($entity, $array, $stub, $isNested) {
-    if (!$isNested) {
-      foreach ($entity->toArray() as $property => $value) {
-        $array[BaseCaster::PREFIX_PROTECTED . $property] = $value;
-      }
-    }
-
-    return $array;
-  }
-
-  /**
-   * Casts \Drupal\Core\Config\ConfigBase classes.
-   */
-  public static function castConfig($config, $array, $stub, $isNested) {
-    if (!$isNested) {
-      foreach ($config->get() as $property => $value) {
-        $array[BaseCaster::PREFIX_VIRTUAL . $property] = $value;
-      }
-    }
-
-    return $array;
-  }
-
-  /**
-   * Casts \Drupal\Component\DependencyInjection\Container classes.
-   */
-  public static function castContainer($container, $array, $stub, $isNested) {
-    if (!$isNested) {
-      $service_ids = $container->getServiceIds();
-      sort($service_ids);
-      foreach ($service_ids as $service_id) {
-        $service = $container->get($service_id);
-        $array[BaseCaster::PREFIX_VIRTUAL . $service_id] = is_object($service) ? get_class($service) : $service;
-      }
-    }
-
-    return $array;
-  }
-
-}