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
| alias ga="git add" | |
| alias gs="git status" | |
| alias gc="git checkout" | |
| alias gcb="git checkout -b" | |
| alias gb="git branch" | |
| alias gp="git pull" | |
| alias gd="git diff" | |
| alias gcom="git commit" | |
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
| DROP FUNCTION IF EXISTS uuid_v4; | |
| DROP FUNCTION IF EXISTS BIN_TO_UUID; | |
| DROP FUNCTION IF EXISTS UUID_TO_BIN; | |
| -- Change delimiter so that the function body doesn't end the function declaration | |
| DELIMITER // | |
| CREATE FUNCTION uuid_v4() | |
| RETURNS CHAR(36) NO SQL | |
| BEGIN |
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 | |
| declare(strict_types=1); | |
| namespace App\Traits; | |
| use Doctrine\ORM\EntityManagerInterface; | |
| use Doctrine\Persistence\ObjectRepository; | |
| trait HasEntityManager | |
| { |
OlderNewer