Page MenuHomeDevCentral

DockerImage.php
No OneTemporary

DockerImage.php

<?php
namespace Keruald\DockerHub;
abstract class DockerImage {
///
/// Public properties
///
/**
* @var string
*/
public $registry;
/**
* @var string
*/
public $user;
/**
* @var string
*/
public $image;
///
/// Constructor
///
/**
* Initializes a new instance of a DockerImage object.
*
* @param string $user
* @param string $image
*/
public function __construct ($user, $image) {
$this->user = $user;
$this->image = $image;
}
///
/// Helper methods
///
/**
* Gets the URL to the image on the registry.
*
* @return string
*/
public abstract function getRegistryUrl();
}

File Metadata

Mime Type
text/x-php
Expires
Fri, Jan 30, 06:11 (1 d, 12 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3396421
Default Alt Text
DockerImage.php (753 B)

Event Timeline