I hereby claim:
- I am jeromegamez on github.
- I am lefoudufafa (https://keybase.io/lefoudufafa) on keybase.
- I have a public key ASBXmCEV3hjXVyZ2hNGaH73ewq7inQc7BP1QXoNdPpgpcAo
To claim this, I am signing this object:
| SHELL := bash | |
| .ONESHELL: | |
| .SHELLFLAGS := -eu -o pipefail -c | |
| .DELETE_ON_ERROR: | |
| MAKEFLAGS += --warn-undefined-variables | |
| MAKEFLAGS += --no-builtin-rules | |
| .PHONY: mongo-up | |
| mongo-up: ## Spin up MongoDB WITHOUT index checks | |
| docker compose -f compose-mongo.yml up -d |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| /** | |
| * Returns TRUE if the given keys are all set in the array. Each key can be any value possible for an array index. | |
| * | |
| * @see array_key_exists() | |
| * | |
| * @param array $array An array with keys to check. | |
| * @param string[] $keys Keys to check. | |
| * @param mixed $missing Reference to a variable that that contains the missing keys. |