Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / league / container / src / Definition / DefinitionFactoryInterface.php
1 <?php
2
3 namespace League\Container\Definition;
4
5 use League\Container\ImmutableContainerAwareInterface;
6
7 interface DefinitionFactoryInterface extends ImmutableContainerAwareInterface
8 {
9     /**
10      * Return a definition based on type of concrete.
11      *
12      * @param  string $alias
13      * @param  mixed  $concrete
14      * @return mixed
15      */
16     public function getDefinition($alias, $concrete);
17 }