first working version with simple WaitForContainerRunning implementation

This commit is contained in:
Sergei Shitikov
2024-08-29 18:01:04 +02:00
parent 27caae56c0
commit b7a274b1d9
8 changed files with 276 additions and 201 deletions
+14
View File
@@ -0,0 +1,14 @@
<?php
declare(strict_types=1);
namespace Testcontainers\Container;
/**
* Added for backward compatibility.
* Just a wrapper for GenericContainer.
* @deprecated Use GenericContainer instead.
*/
class Container extends GenericContainer
{
}