Logo white

Administrator / test_1

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • test_1
  • framework
  • tests
  • injector
  • testservices
  • SampleService.php
  • first commit from local
    118a6488
    Administrator authored
    2015-11-13 11:07:18 +0200  
    Browse Code ยป
SampleService.php 215 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12
<?php

class SampleService
{
	public $constructorVarOne;
	public $constructorVarTwo;
	
	public function __construct($v1 = null, $v2 = null) {
		$this->constructorVarOne = $v1;
		$this->constructorVarTwo = $v2;
	}
}