12345678910111213141516171819202122232425 |
- <?php
- namespace Mapping\Fixture\Yaml;
- class Uploadable
- {
- private $id;
- private $mimeType;
- private $fileInfo;
- private $size;
- private $path;
- public function getPath()
- {
- return $this->path;
- }
- public function callbackMethod()
- {
- }
- }
|