POST /v1.14/containers/create HTTP/1.1
Host: 127.0.0.1:9999
User-Agent: Docker-Client/1.2.0
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"api": "0.13", | |
"space": "The space name", | |
"logo": "http://your-space.com/logo.png", | |
"url": "http://example.com", | |
"location": { | |
"address": "see the documentation", | |
"lon": 5.973817, | |
"lat": 39.240431 | |
}, |
$mapperMock = $this->getMock('Doctor\Mapper\Calendar');
$mapperMock
->expects($this->once())
->method('getDoctorTimeSlots')
->will($this->returnValue([]))
;
$translator = $this->getMock('Zend\Translator');
$translator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$winners = array( | |
array( | |
array(8, 17, 21, 31, 34), | |
array(9, 10), | |
), | |
array( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html style="background: #184b34"> | |
<script> | |
window.color = { | |
red: 0, | |
green: 0, | |
blue: 0 | |
}; | |
window.color2 = [0, 0, 0]; | |
window.steps = 0; |
OlderNewer