From 46b77928f746a4231d064774b5b67fd892c7ce86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Sun, 4 Aug 2013 17:50:34 +0200 Subject: rm vendor --- .../DateFormat/DayOfWeekTransformer.php | 59 ---------------------- 1 file changed, 59 deletions(-) delete mode 100644 vendor/symfony/intl/Symfony/Component/Intl/DateFormatter/DateFormat/DayOfWeekTransformer.php (limited to 'vendor/symfony/intl/Symfony/Component/Intl/DateFormatter/DateFormat/DayOfWeekTransformer.php') diff --git a/vendor/symfony/intl/Symfony/Component/Intl/DateFormatter/DateFormat/DayOfWeekTransformer.php b/vendor/symfony/intl/Symfony/Component/Intl/DateFormatter/DateFormat/DayOfWeekTransformer.php deleted file mode 100644 index ee53a4e6..00000000 --- a/vendor/symfony/intl/Symfony/Component/Intl/DateFormatter/DateFormat/DayOfWeekTransformer.php +++ /dev/null @@ -1,59 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Symfony\Component\Intl\DateFormatter\DateFormat; - -/** - * Parser and formatter for day of week format - * - * @author Igor Wiedler - */ -class DayOfWeekTransformer extends Transformer -{ - /** - * {@inheritDoc} - */ - public function format(\DateTime $dateTime, $length) - { - $dayOfWeek = $dateTime->format('l'); - switch ($length) { - case 4: - return $dayOfWeek; - case 5: - return $dayOfWeek[0]; - default: - return substr($dayOfWeek, 0, 3); - } - } - - /** - * {@inheritDoc} - */ - public function getReverseMatchingRegExp($length) - { - switch ($length) { - case 4: - return 'Monday|Tuesday|Wednesday|Thursday|Friday|Saturday|Sunday'; - case 5: - return '[MTWFS]'; - default: - return 'Mon|Tue|Wed|Thu|Fri|Sat|Sun'; - } - } - - /** - * {@inheritDoc} - */ - public function extractDateOptions($matched, $length) - { - return array(); - } -} -- cgit v1.2.3