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
$ sudo apt-get install postgresql | |
$ sudo -i -u postgres | |
CREATE USER elcaro; | |
ALTER ROLE elcaro WITH CREATEDB; | |
CREATE DATABASE "ElCaro" OWNER elcaro; | |
ALTER USER elcaro WITH ENCRYPTED PASSWORD 'elcaro'; | |
\q | |
$ postgres@computer:~$ exit |
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 | |
namespace Symfony\Component\ClassLoader; | |
class UniversalClassLoaderChecker | |
{ | |
public function check(UniversalClassLoader $classLoader) | |
{ | |
return array_merge( | |
$this->checkNamespaces($classLoader), |
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
lint = "!sh -c 'git status | awk \"/modified/ {print \\$3}\" | xargs -L 1 php -l'" |