This file contains hidden or 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 | |
use doctrine\ORM\EntityManagerInterface; | |
$entityManager->transactional(function (EntityManagerInterface $entityManager) { | |
// first transaction | |
$entityManager->transactional(function () { | |
// nested transaction #1 | |
}); |
This file contains hidden or 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
@media screen and (-webkit-min-device-pixel-ratio:0) { | |
/* Custom Webkit scroll bar, super fucking dope | |
http://beautifulpixels.com/goodies/create-custom-webkit-scrollbar/ */ | |
body { position:absolute; top:0px; left:0; bottom:0; right:10px; overflow-y:scroll; overflow-x:hidden;} | |
html { | |
overflow-y: auto; | |
background-color: transparent; | |
} | |
::-webkit-scrollbar { |