Skip to content

Commit

Permalink
Removed a test. Added a comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeldrennen committed Jan 8, 2021
1 parent e517ecd commit b89a431
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/CUSIP.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
class CUSIP {


/**
* A CUSIP may only contain characters that pass this regex.
*/
const REGEX_PATTERN = "/[\dA-Z@\*\#]{9}/";

/**
Expand Down
1 change: 1 addition & 0 deletions tests/CUSIPTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ public function testInvalidInputString() {
}



/**
* @test
*/
Expand Down

0 comments on commit b89a431

Please sign in to comment.