XRL  3.0.0
Simple XML-RPC Library (both client and server)
CallableInterface.php
1 <?php
2 /*
3  * This file is part of XRL, a simple XML-RPC Library for PHP.
4  *
5  * Copyright (c) 2012, XRL Team. All rights reserved.
6  * XRL is licensed under the 3-clause BSD License.
7  *
8  * For the full copyright and license information, please view the LICENSE
9  * file that was distributed with this source code.
10  */
11 
12 namespace fpoirotte\XRL;
13 
25 {
48  public function getCallable();
49 
61  public function getRepresentation();
62 
79  public function __invoke();
80 
92  public function invokeArgs(array &$args);
93 
102  public function __toString();
103 
112  public function getReflector();
113 }
Interface for something that can be called.