Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@amcastror
amcastror / cloudSettings
Created April 11, 2019 22:05
Visual Studio Code Settings Sync Gist
{"lastUpload":"2019-04-11T22:05:19.126Z","extensionVersion":"v3.2.8"}
<?php
$bool = false;
if($bool && $otherBool = true){
echo 'this code is not executed';
}
// Esto genera un errror
dump($otherBool);
@amcastror
amcastror / php-assign-and-validate.php
Created May 22, 2018 18:44
Asignación con validación en un if
<?php
if(null === $entity = $this->em->find(1)){
throw new \Exception('Entity not found');
}