int, integer
string
array-key
bool, boolean
true
false
null
float
double
scalar
array
iterable
callable
resource
void
object
positive-int
negative-int
int<0, 100>
int
int<50, max>
Type[]
array
array
non-empty-array
non-empty-array
xxxxxxxxxx
/**
* Sets the properties of the Alert
*
* @param array<string, string> $array ← Type
*/
static function loop(array $array) {
for ($array as $key => $value) {
dump([$key => $value]);
}
die('*')
}