Update to Drupal 8.1.0. For more information, see https://www.drupal.org/drupal-8.1.0-release-notes

This commit is contained in:
Pantheon Automation 2016-04-20 09:56:34 -07:00 committed by Greg Anderson
parent b11a755ba8
commit c0a0d5a94c
6920 changed files with 64395 additions and 57312 deletions

View file

@ -1,8 +1,4 @@
<?php
/**
* @file
* Contains \Drupal\Core\Asset\AssetCollectionGrouperInterface.
*/
namespace Drupal\Core\Asset;

View file

@ -1,8 +1,4 @@
<?php
/**
* @file
* Contains \Drupal\Core\Asset\AssetCollectionOptimizerInterface.
*/
namespace Drupal\Core\Asset;

View file

@ -1,8 +1,4 @@
<?php
/**
* @file
* Contains \Drupal\Core\Asset\AssetCollectionRendererInterface.
*/
namespace Drupal\Core\Asset;

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\Core\Asset\AssetDumper.
*/
namespace Drupal\Core\Asset;
use Drupal\Component\Utility\Crypt;

View file

@ -1,8 +1,4 @@
<?php
/**
* @file
* Contains \Drupal\Core\Asset\AssetDumperInterface.
*/
namespace Drupal\Core\Asset;

View file

@ -1,8 +1,4 @@
<?php
/**
* @file
* Contains \Drupal\Core\Asset\AssetOptimizerInterface.
*/
namespace Drupal\Core\Asset;

View file

@ -1,8 +1,4 @@
<?php
/**
* @file
* Contains \Drupal\Core\Asset\AssetResolver.
*/
namespace Drupal\Core\Asset;

View file

@ -1,8 +1,4 @@
<?php
/**
* @file
* Contains \Drupal\Core\Asset\AssetResolverInterface.
*/
namespace Drupal\Core\Asset;

View file

@ -1,8 +1,4 @@
<?php
/**
* @file
* Contains \Drupal\Core\Asset\AttachedAssets.
*/
namespace Drupal\Core\Asset;

View file

@ -1,8 +1,4 @@
<?php
/**
* @file
* Contains \Drupal\Core\Asset\AttachedAssetsInterface.
*/
namespace Drupal\Core\Asset;

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\Core\Asset\CssCollectionGrouper.
*/
namespace Drupal\Core\Asset;
/**

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\Core\Asset\CssCollectionOptimizer.
*/
namespace Drupal\Core\Asset;
use Drupal\Core\State\StateInterface;

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\Core\Asset\CssCollectionRenderer.
*/
namespace Drupal\Core\Asset;
use Drupal\Component\Utility\Html;

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\Core\Asset\CssOptimizer.
*/
namespace Drupal\Core\Asset;
use Drupal\Component\Utility\Unicode;

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\Core\Asset\Exception\IncompleteLibraryDefinitionException.
*/
namespace Drupal\Core\Asset\Exception;
/**

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\Core\Asset\Exception\InvalidLibrariesExtendSpecificationException.
*/
namespace Drupal\Core\Asset\Exception;
/**

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\Core\Asset\Exception\InvalidLibrariesOverrideSpecificationException.
*/
namespace Drupal\Core\Asset\Exception;
/**

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\Core\Asset\Exception\InvalidLibraryFileException.
*/
namespace Drupal\Core\Asset\Exception;
/**

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\Core\Asset\Exception\LibraryDefinitionMissingLicenseException.
*/
namespace Drupal\Core\Asset\Exception;
/**

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\Core\Asset\JsCollectionGrouper.
*/
namespace Drupal\Core\Asset;
/**

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\Core\Asset\JsCollectionOptimizer.
*/
namespace Drupal\Core\Asset;
use Drupal\Core\State\StateInterface;

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\Core\Asset\JsCollectionRenderer.
*/
namespace Drupal\Core\Asset;
use Drupal\Component\Serialization\Json;

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\Core\Asset\JsOptimizer.
*/
namespace Drupal\Core\Asset;
use Drupal\Component\Utility\Unicode;

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\Core\Asset\LibraryDependencyResolver.
*/
namespace Drupal\Core\Asset;
/**

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\Core\Asset\LibraryDependencyResolverInterface.
*/
namespace Drupal\Core\Asset;
/**

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\Core\Asset\LibraryDiscovery.
*/
namespace Drupal\Core\Asset;
use Drupal\Core\Cache\CacheCollectorInterface;

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\Core\Asset\LibraryDiscoveryCollector.
*/
namespace Drupal\Core\Asset;
use Drupal\Component\Utility\NestedArray;
@ -20,20 +15,6 @@ use Drupal\Core\Theme\ThemeManagerInterface;
*/
class LibraryDiscoveryCollector extends CacheCollector {
/**
* The cache backend.
*
* @var \Drupal\Core\Cache\CacheBackendInterface
*/
protected $cache;
/**
* The lock backend.
*
* @var \Drupal\Core\Lock\LockBackendInterface
*/
protected $lock;
/**
* The library discovery parser.
*

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\Core\Asset\LibraryDiscoveryInterface.
*/
namespace Drupal\Core\Asset;
/**

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\Core\Asset\LibraryDiscoveryParser.
*/
namespace Drupal\Core\Asset;
use Drupal\Core\Asset\Exception\IncompleteLibraryDefinitionException;