As in many programming languages, such as Java, C #, and many others, can you define in PHP the type of variable we want to initialize in a method's parameters?
The code below is an example of what I'm talking about, but in Java
//Nesse método, foi especificado que a variável "i" deverá ser do tipo int
public void executar(int i) {
}