24 lines
280 B
PHP
24 lines
280 B
PHP
|
<?php
|
||
|
namespace nur\cli\impl;
|
||
|
|
||
|
class AbcdDest {
|
||
|
private $a;
|
||
|
protected $b;
|
||
|
public $c, $d;
|
||
|
|
||
|
function getA() {
|
||
|
return $this->a;
|
||
|
}
|
||
|
|
||
|
function getB() {
|
||
|
return $this->b;
|
||
|
}
|
||
|
|
||
|
function getC() {
|
||
|
return $this->c;
|
||
|
}
|
||
|
|
||
|
function getD() {
|
||
|
return $this->d;
|
||
|
}
|
||
|
}
|