1<?php
2class ClassWithScalarTypeDeclarations
3{
4    public function foo(string $string, int $int)
5    {
6    }
7}
8