If your %HOMEPATH% contains non ASCII symbols, for example cyrillic - it's better to create another user.
Download and install Git
- Step: Adjusting your PATH environment
/** | |
* ███████████████████████████████████████████████▓▓▓▓▓▀▀▀▓▓▓▓▓▓▓▓▓▓██▓▌█▌▒▓▓▓▓▓▓▓▓ | |
* ██████████████████████▓▄▓████▓▓▓▓██████▓▓█▓▓███████▌▄▄░ ▓▓▓▓▓▓▓██▐▌▓▌▓▓▓▓▓▓▓▓▌ | |
* ██████████████████████▌▄▄▄▄▓▓▓█████▌▀▀▓░▐░ ▓██▀███▓███▌▒▐▄▓▓▓▓▓▓███▓▓█▌▓▓▓▓▓▓▓▓▒ | |
* ██████████████████████████████▓▓▀ ▀▓▓▓▓▄▄▄▓▓▓▓▓███▓▓█ ▓▓▓▓▓▓▓▓▓ | |
* ███████████▀████████████████▀░▒░ ▀█████▓▓▓▓▓██▌███░▓▓▓▓▓▓▓▓▓ | |
* ████████████▐█▓ ███████████▓▒▒░ ░████▓▓▓▓▓████▓▓▌▓▓▓▓▓▌▓▓▓ | |
* ███████████▓▒██ █████████████▓▄ █████▓▓▓▓███▓██ ▓▓▓▓▓▓▓▓▓ | |
* ▓██████████▌▓██ █████████████▓▀░ ▐▀████▌▓▓▓██████░▓▓▓▓▓▓▓▓▌ | |
* ▓███████▓▀▓░▓█▌ █████████████▓▓▓▓▓▓▓▄▓█▓▄▄▄▄▄▄▓▓▓▓▓▓▄▄▓████▓▓▓▓▓███▌▓▄▓▓▓▓▓▓▓▓▓ |
If your %HOMEPATH% contains non ASCII symbols, for example cyrillic - it's better to create another user.
<?php | |
class MyRegistrationForm | |
{ | |
/** @var string */ | |
private $email; | |
/** @var string */ | |
private $password; | |
vagrant up
vagrant ssh
sudo -i
docker -irt --name CONTAINER_NAME centos:centos6.6 bash
ansible-playbook -i hosts playbook.yml
docker commit $(docker ps -aqf "name=CONTAINER_NAME") CONTAINER_NAME:CONTAINER_VERSION
<?php | |
class Test { | |
protected function verifyMockObjects() | |
{ | |
$reflectionMockObjectsProperty = new \ReflectionProperty(\PHPUnit_Framework_TestCase::class, 'mockObjects'); | |
$reflectionMockObjectsProperty->setAccessible(true); | |
$reflectionConfigurableMethods = new \ReflectionProperty( |
<?php | |
$sourcePath = ''; | |
$destinationPath = ''; | |
$maxHeight = 1024; | |
$maxWith = 768; | |
$ratio = $maxWith / $maxHeight; | |
$dir = new DirectoryIterator($sourcePath); |
services: | |
account_repository: | |
class: MY\AppBundle\Repository\AccountRepository | |
factory: ["@doctrine", getRepository] | |
arguments: | |
- MY\AppBundle\Entity\Account |
var result = {}; | |
$('.time-entry').each(function () { | |
var $subject = $(this).children('.subject'); | |
var $tracker = $subject.children('a').text(); | |
var $issue = $subject.contents().last().text().substring(2); | |
var task = '[' + $tracker.replace(' ', '') + '][' + $issue + ']'; | |
var time = $($(this).children('.issue-hours')[0]).text() * 1; | |
if (!result.hasOwnProperty(task)) { |
<?php | |
namespace app\models; | |
use Illuminate\Database\Eloquent\Model; | |
use Illuminate\Database\Eloquent\Relations\BelongsTo; | |
use KoKoKo\Assert\Assert; | |
class Photo extends Model | |
{ |