ILIAS  Release_5_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
Clone.php
Go to the documentation of this file.
1 <?php
2 
8 {
13  protected $clone;
14 
18  public function __construct($clone)
19  {
20  $this->clone = $clone;
21  }
22 
29  public function validate($v, $config, $context)
30  {
31  return $this->clone->validate($v, $config, $context);
32  }
33 
38  public function make($string)
39  {
40  return clone $this->clone;
41  }
42 }
43 
44 // vim: et sw=4 sts=4