diff --git a/core/includes/file.inc b/core/includes/file.inc index 8228b00..f18cbf8 100644 --- a/core/includes/file.inc +++ b/core/includes/file.inc @@ -229,7 +229,7 @@ function file_stream_wrapper_uri_normalize($uri) { * "private://example.txt" would return a new private stream wrapper object * (Drupal\Core\StreamWrapper\PrivateStream). * - * * @deprecated in Drupal 8.x-dev, will be removed before Drupal 8.0. + * @deprecated in Drupal 8.x-dev, will be removed before Drupal 8.0. * Use \Drupal::service('stream_wrapper_manager')->getViaUri(). */ function file_stream_wrapper_get_instance_by_uri($uri) { diff --git a/core/modules/simpletest/src/BrowserTestBase.php b/core/modules/simpletest/src/BrowserTestBase.php index cd77a98..b37a681 100644 --- a/core/modules/simpletest/src/BrowserTestBase.php +++ b/core/modules/simpletest/src/BrowserTestBase.php @@ -950,7 +950,7 @@ public function installDrupal() { // Reset/rebuild all data structures after enabling the modules, primarily // to synchronize all data structures and caches between the test runner and // the child site. - // Affects e.g. file_get_stream_wrappers(). + // Affects e.g. StreamWrapperManagerInterface::getWrappers(). // @see \Drupal\Core\DrupalKernel::bootCode() // @todo Test-specific setUp() methods may set up further fixtures; find a // way to execute this after setUp() is done, or to eliminate it entirely.