Skip to content

Instantly share code, notes, and snippets.

View meza's full-sized avatar
👋
tweet me if I missed a PR

Meza meza

👋
tweet me if I missed a PR
  • London, United Kingdom
  • 12:30 (UTC +01:00)
View GitHub Profile
@meza
meza / TimeValidator.php
Created October 24, 2011 09:10
TDD vs. Regular Expressions - coding kata
<?php
class TimeValidator
{
public function isValid($time_specification)
{
return 1 == preg_match($this->buildRegExp(), $time_specification);
}
private function buildRegExp()