Skip to content
This repository was archived by the owner on Mar 1, 2024. It is now read-only.

Commit 2c7f926

Browse files
author
Nenad Stojanovikj
authored
Merge pull request #15 from hellofresh/patch/get-rid-of-baberlei-assert
Remove baberlei/assert dependency
2 parents 62e5651 + cc95090 commit 2c7f926

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

composer.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212
"require": {
1313
"php": ">=7.0",
1414
"ramsey/uuid": "^3.0",
15-
"easyframework/collections": "^7.0.0",
16-
"beberlei/assert": "^3.1"
15+
"easyframework/collections": "^7.0.0"
1716
},
1817
"require-dev": {
1918
"phpunit/phpunit": "^5.3",

src/Domain/StreamName.php

+7-5
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
namespace HelloFresh\Engine\Domain;
44

5-
use Assert\Assertion;
6-
75
/**
86
* Class StreamName
97
*
@@ -22,9 +20,13 @@ class StreamName
2220
*/
2321
public function __construct($name)
2422
{
25-
Assertion::string($name, 'StreamName must be a string');
26-
Assertion::notEmpty($name, 'StreamName must not be empty');
27-
Assertion::maxLength($name, 200, 'StreamName should not be longer than 200 chars');
23+
if (!\is_string($name)) {
24+
throw new \InvalidArgumentException('StreamName must be a string!');
25+
}
26+
$len = \strlen($name);
27+
if ($len === 0 || $len > 200) {
28+
throw new \InvalidArgumentException('StreamName must not be empty and not longer than 200 chars!');
29+
}
2830
$this->name = $name;
2931
}
3032

0 commit comments

Comments
 (0)