marcin-jozwikowski/console-date-picker

A DateTime picker for Symfony Console commands

v1.0 2021-10-21 13:21 UTC

This package is auto-updated.

Last update: 2024-05-21 19:43:02 UTC


README

A DateTime picker for Symfony Console commands

Installation

composer require marcin-jozwikowski/console-date-picker

Usage

Example usage in Symfony command

protected function execute(InputInterface $input, OutputInterface $output): int
{
    $datePicker = new DatePicker($input, $output);
    $date       = $datePicker->getDate(new YMDPickerDisplay(), "Please provide date ");

    $io->success($date->format('Y-m-d H:i:s'));

    return Command::SUCCESS;
}