No need for a default value

This commit is contained in:
Klaus Silveira
2012-07-14 16:35:37 -03:00
parent c1bbe61621
commit 31d43f3ede

View File

@@ -33,5 +33,4 @@ $app->get('{repo}/{format}ball/{branch}', function($repo, $format, $branch) use
})->assert('format', '(zip|tar)')
->assert('repo', '[\w-._]+')
->assert('branch', '[\w-._]+')
->value('format', 'zip')
->bind('archive');