scriptbox

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

Write.class.php (132B)


      1 <?php
      2 
      3 namespace dsl\standard;
      4 
      5 class Write
      6 {
      7 	public $buffer;
      8 
      9 	public function __invoke( $text )
     10 	{
     11 		$this->buffer .= $text;
     12 	}
     13 }