芝麻web文件管理V1.00
编辑当前文件:/home/elegucvf/public_html/src/dashboard/domain/data-provider/parameters.php
start_date; } /** * Getter for the end date. * The date format should be Y-M-D. * * @return string */ public function get_end_date(): string { return $this->end_date; } /** * Getter for the result limit. * * @return int */ public function get_limit(): int { return $this->limit; } /** * The start date setter. * * @param string $start_date The start date. * * @return void */ public function set_start_date( string $start_date ): void { $this->start_date = $start_date; } /** * The end date setter. * * @param string $end_date The end date. * * @return void */ public function set_end_date( string $end_date ): void { $this->end_date = $end_date; } /** * The result limit. * * @param int $limit The result limit. * @return void */ public function set_limit( int $limit ): void { $this->limit = $limit; } }