Inheritance: implements App\Services\Deployment\DeployCommanderInterface
 public function test_Should_ReturnFalse_When_RollbackCommandFails()
 {
     Storage::shouldReceive('put')->once()->andReturn(0);
     $deployCommander = new StorageDeployCommander();
     $result = $deployCommander->rollback(new App\Models\Deployment());
     $this->assertFalse($result, 'Expected rollback command to fail.');
 }