atom-beautify/examples/simple-jsbeautifyrc/php/expected/test3.php

14 lines
311 B
PHP

<?php
class Date {
const FORMAT_FULL = 'full';
const FORMAT_LONG = 'long';
const FORMAT_MEDIUM = 'medium';
const FORMAT_SHORT = 'short';
public static function formatDate($time, $format) {
if (!$time || $time == null) {
return '';
}
return $time;
}
}