File modules/cms/generator/PublishOrder.class.php

Last commit: Wed Oct 14 23:49:54 2020 +0200	Jan Dankert	Refactoring: Creating the target instance with a Factory (Java style); Asynchronous publishing of files.
1 <?php 2 3 4 namespace cms\generator; 5 6 7 /** 8 * An order for publishing a file. 9 */ 10 class PublishOrder 11 { 12 public $localFilename; 13 public $destinationFilename; 14 public $fileTime; 15 16 /** 17 * PublishOrder constructor. 18 * 19 * @param $localFilename 20 * @param $destinationFilename 21 * @param $fileTime 22 */ 23 public function __construct($localFilename, $destinationFilename, $fileTime) 24 { 25 $this->localFilename = $localFilename; 26 $this->destinationFilename = $destinationFilename; 27 $this->fileTime = $fileTime; 28 } 29 30 31 }
Download modules/cms/generator/PublishOrder.class.php
History Wed, 14 Oct 2020 23:49:54 +0200 Jan Dankert Refactoring: Creating the target instance with a Factory (Java style); Asynchronous publishing of files.