| @@ 8-48 (lines=41) @@ | ||
| 5 | use ApiClients\Tools\ResourceTestUtilities\Type; |
|
| 6 | use Generator; |
|
| 7 | ||
| 8 | final class IntType extends AbstractType implements Type |
|
| 9 | { |
|
| 10 | const SCALAR = 'int'; |
|
| 11 | ||
| 12 | /** |
|
| 13 | * Generate random data. |
|
| 14 | * |
|
| 15 | * @param int $count Amount of rows to generate and return |
|
| 16 | * @return Generator |
|
| 17 | */ |
|
| 18 | public function generate(int $count = 100): Generator |
|
| 19 | { |
|
| 20 | for ($i = 0; $i < $count; $i++) { |
|
| 21 | yield mt_rand($i, $count * mt_rand($i, $count)); |
|
| 22 | } |
|
| 23 | } |
|
| 24 | ||
| 25 | /** |
|
| 26 | * List of types that are compatible with this type. |
|
| 27 | * |
|
| 28 | * @return Generator |
|
| 29 | */ |
|
| 30 | public function compatible(): Generator |
|
| 31 | { |
|
| 32 | yield static::class; |
|
| 33 | } |
|
| 34 | ||
| 35 | /** |
|
| 36 | * List of types that are incompatible with this type. |
|
| 37 | * |
|
| 38 | * @return Generator |
|
| 39 | */ |
|
| 40 | public function incompatible(): Generator |
|
| 41 | { |
|
| 42 | yield BoolType::class; |
|
| 43 | yield FloatType::class; |
|
| 44 | yield StringType::class; |
|
| 45 | yield DoubleType::class; |
|
| 46 | } |
|
| 47 | } |
|
| 48 | ||
| @@ 8-47 (lines=40) @@ | ||
| 5 | use ApiClients\Tools\ResourceTestUtilities\Type; |
|
| 6 | use Generator; |
|
| 7 | ||
| 8 | final class StringType extends AbstractType implements Type |
|
| 9 | { |
|
| 10 | const SCALAR = 'string'; |
|
| 11 | ||
| 12 | /** |
|
| 13 | * Generate random data. |
|
| 14 | * |
|
| 15 | * @param int $count Amount of rows to generate and return |
|
| 16 | * @return Generator |
|
| 17 | */ |
|
| 18 | public function generate(int $count = 100): Generator |
|
| 19 | { |
|
| 20 | for ($i = 0; $i < $count; $i++) { |
|
| 21 | yield (string)mt_rand($i, $count * mt_rand($i, $count)); |
|
| 22 | } |
|
| 23 | } |
|
| 24 | ||
| 25 | /** |
|
| 26 | * List of types that are compatible with this type. |
|
| 27 | * |
|
| 28 | * @return Generator |
|
| 29 | */ |
|
| 30 | public function compatible(): Generator |
|
| 31 | { |
|
| 32 | yield static::class; |
|
| 33 | } |
|
| 34 | ||
| 35 | /** |
|
| 36 | * List of types that are incompatible with this type. |
|
| 37 | * |
|
| 38 | * @return Generator |
|
| 39 | */ |
|
| 40 | public function incompatible(): Generator |
|
| 41 | { |
|
| 42 | yield BoolType::class; |
|
| 43 | yield IntType::class; |
|
| 44 | yield FloatType::class; |
|
| 45 | yield DoubleType::class; |
|
| 46 | } |
|
| 47 | } |
|
| 48 | ||