fix GiroUzenetsorszam case sensitive file/class name, change version to v.0.0.26

This commit is contained in:
2016-01-22 20:11:17 +01:00
parent 33c6f46ce9
commit fd4d38ab44
3 changed files with 3 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
<?php
namespace common\components\giro;
use common\components\giro\GiroBase;
class GiroUzenetsorszam extends GiroBase{
public $osszeallitasDatuma;
public $sorszam;
public function toString( ) {
return $this->osszeallitasDatuma . $this->szamKitolt( $this->sorszam,4);
}
}
?>