mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
13 lines
214 B
PHP
13 lines
214 B
PHP
<?php
|
|
|
|
class SampleService
|
|
{
|
|
public $constructorVarOne;
|
|
public $constructorVarTwo;
|
|
|
|
public function __construct($v1 = null, $v2 = null) {
|
|
$this->constructorVarOne = $v1;
|
|
$this->constructorVarTwo = $v2;
|
|
}
|
|
}
|