Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / league / container / src / Definition / ClassDefinitionInterface.php
1 <?php
2
3 namespace League\Container\Definition;
4
5 interface ClassDefinitionInterface extends DefinitionInterface
6 {
7     /**
8      * Add a method to be invoked
9      *
10      * @param  string $method
11      * @param  array  $args
12      * @return $this
13      */
14     public function withMethodCall($method, array $args = []);
15
16     /**
17      * Add multiple methods to be invoked
18      *
19      * @param  array $methods
20      * @return $this
21      */
22     public function withMethodCalls(array $methods = []);
23 }