PHP Classes

File: TestClass2.php

Recommend this page to a friend!
  Classes of wiki chua   DiLioc   TestClass2.php   Download  
File: TestClass2.php
Role: Unit test script
Content type: text/plain
Description: Unit test script
Class: DiLioc
Register and call dependency injection containers
Author: By
Last change: Update of TestClass2.php
Date: 2 years ago
Size: 329 bytes
 

Contents

Class file image Download
<?php

/**
 * undocumented class
 *
 * @package default
 * @author
 **/
class TestClass2
{
    public
$var = '';
    function
__construct($var,$var2,$var3) {
       
$this->var = $var;
       
$this->var2 = $var2;
       
$this->var3 = $var3;
    }

    public function
out()
    {
        return
"I'm " . $this->var .' and '. $this->var2.' and '. $this->var3;
    }


}