nur-sery/nur_tests/b/params/impl/BPB1.php

15 lines
216 B
PHP
Raw Normal View History

2023-12-03 22:11:29 +04:00
<?php
namespace nur\b\params\impl;
class BPB1 {
private $ppFirst;
function getFirst(): ?string {
return $this->ppFirst;
}
function pp_setFirst(string $value): void {
$this->ppFirst = $value;
}
}