1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
-
- namespace SCF\Additionals;
-
- class Download
- {
-
- /**
- * @var string
- */
- private $absolutePath;
-
- /**
- * @var string
- */
- private $fileName;
-
- public function __construct()
- {
-
- }
-
- /**
- * @param string $fileName
- */
- public function setFileName($fileName)
- {
- $this->fileName = $fileName;
- }
-
- /**
- * @return string
- */
- public function getFileName()
- {
- return $this->fileName;
- }
-
- /**
- * @return string
- */
- public function getAbsolutePath()
- {
- return $this->absolutePath;
- }
-
- /**
- * @param string $absolutePath
- */
- public function setAbsolutePath($absolutePath)
- {
- $this->absolutePath = $absolutePath;
- }
-
- //TODO: Finishing Download Class to generate correct Downloads for Page!
- }
|