feat: rename package name

This commit is contained in:
Soner Sayakci
2024-07-30 21:22:22 +02:00
parent 0005627e14
commit bf762350e9
24 changed files with 98 additions and 71 deletions
+2 -2
View File
@@ -2,11 +2,11 @@
declare(strict_types=1);
namespace Testcontainer\Wait;
namespace Testcontainers\Wait;
use Closure;
use Symfony\Component\Process\Process;
use Testcontainer\Exception\ContainerNotReadyException;
use Testcontainers\Exception\ContainerNotReadyException;
class WaitForExec implements WaitInterface
{
+2 -2
View File
@@ -2,11 +2,11 @@
declare(strict_types=1);
namespace Testcontainer\Wait;
namespace Testcontainers\Wait;
use RuntimeException;
use Symfony\Component\Process\Process;
use Testcontainer\Exception\ContainerNotReadyException;
use Testcontainers\Exception\ContainerNotReadyException;
class WaitForHealthCheck implements WaitInterface
{
+3 -3
View File
@@ -2,10 +2,10 @@
declare(strict_types=1);
namespace Testcontainer\Wait;
namespace Testcontainers\Wait;
use Testcontainer\Exception\ContainerNotReadyException;
use Testcontainer\Trait\DockerContainerAwareTrait;
use Testcontainers\Exception\ContainerNotReadyException;
use Testcontainers\Trait\DockerContainerAwareTrait;
class WaitForHttp implements WaitInterface
{
+2 -2
View File
@@ -2,10 +2,10 @@
declare(strict_types=1);
namespace Testcontainer\Wait;
namespace Testcontainers\Wait;
use Symfony\Component\Process\Process;
use Testcontainer\Exception\ContainerNotReadyException;
use Testcontainers\Exception\ContainerNotReadyException;
class WaitForLog implements WaitInterface
{
+1 -1
View File
@@ -2,7 +2,7 @@
declare(strict_types=1);
namespace Testcontainer\Wait;
namespace Testcontainers\Wait;
class WaitForNothing implements WaitInterface
{
+3 -3
View File
@@ -2,12 +2,12 @@
declare(strict_types=1);
namespace Testcontainer\Wait;
namespace Testcontainers\Wait;
use JsonException;
use RuntimeException;
use Testcontainer\Exception\ContainerNotReadyException;
use Testcontainer\Trait\DockerContainerAwareTrait;
use Testcontainers\Exception\ContainerNotReadyException;
use Testcontainers\Trait\DockerContainerAwareTrait;
final class WaitForTcpPortOpen implements WaitInterface
{
+1 -1
View File
@@ -2,7 +2,7 @@
declare(strict_types=1);
namespace Testcontainer\Wait;
namespace Testcontainers\Wait;
interface WaitInterface
{