80 - Testing the Confirmation Number Format

This commit is contained in:
Adam Wathan
2017-03-13 18:38:30 -04:00
parent 4fcd3a56fd
commit caa215e028
2 changed files with 45 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<?php
namespace App;
class RandomOrderConfirmationNumberGenerator implements OrderConfirmationNumberGenerator
{
public function generate()
{
return str_repeat('A', 24);
}
}