add wp-rocket
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace WP_Rocket\Engine\Container\Definition;
|
||||
|
||||
interface ClassDefinitionInterface extends DefinitionInterface
|
||||
{
|
||||
/**
|
||||
* Add a method to be invoked
|
||||
*
|
||||
* @param string $method
|
||||
* @param array $args
|
||||
* @return $this
|
||||
*/
|
||||
public function withMethodCall($method, array $args = []);
|
||||
|
||||
/**
|
||||
* Add multiple methods to be invoked
|
||||
*
|
||||
* @param array $methods
|
||||
* @return $this
|
||||
*/
|
||||
public function withMethodCalls(array $methods = []);
|
||||
}
|
||||
Reference in New Issue
Block a user