Drupal7.php in Service Container 8
Same filename and directory in other branches
Contains \Drupal\service_container\Legacy\Drupal7.
Namespace
Drupal\service_container\LegacyFile
src/Legacy/Drupal7.phpView source
<?php
/**
* @file
* Contains \Drupal\service_container\Legacy\Drupal7.
*/
namespace Drupal\service_container\Legacy;
/**
* Defines the Drupal 7 legacy service.
*
* @method void drupal_set_message(string $message = NULL, string $type = 'status', bool $repeat = TRUE)
* @method mixed drupal_get_message(string $message = NULL, string $type = 'status', bool $repeat = TRUE)
*
* @codeCoverageIgnore
*/
class Drupal7 {
public function __call($method, $args) {
return call_user_func_array($method, $args);
}
}