Interfaces should have the suffix "Interface" in their names

This commit is contained in:
Ben Ramsey
2014-11-08 16:27:20 -05:00
parent ebea9b969b
commit 680fd794cb
13 changed files with 23 additions and 23 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
namespace Rhumsaa\Uuid;
interface RandomGeneratorInterface
{
/**
* @param integer $length
*
* @return string
*/
public function generate($length);
}