Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding getWorkers method #35

Merged
merged 1 commit into from
Feb 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion src/Informer/Workers.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,18 @@ final class Workers implements \Countable
* @param array<Worker> $workers
*/
public function __construct(
public array $workers = [],
private readonly array $workers = [],
) {
}

/**
* @return array<Worker>
*/
public function getWorkers(): array
{
return $this->workers;
}

public function count(): int
{
return \count($this->workers);
Expand Down
23 changes: 23 additions & 0 deletions tests/Unit/Informer/WorkersTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?php

declare(strict_types=1);

namespace Spiral\RoadRunner\Tests\Worker\Unit\Informer;

use PHPUnit\Framework\TestCase;
use Spiral\RoadRunner\Informer\Worker;
use Spiral\RoadRunner\Informer\Workers;

final class WorkersTest extends TestCase
{
public function testGetWorkers(): void
{
$workers = [
new Worker(1, 1, 1, 1, 1, 1.0, 'test1', 'test1'),
new Worker(2, 2, 2, 2, 2, 2.0, 'test2', 'test2'),
];

$this->assertEquals([], (new Workers())->getWorkers());
$this->assertEquals($workers, (new Workers($workers))->getWorkers());
}
}
Loading