LilMigrationsBug.php

<?php

namespace Tlf;

/** This is a minimal version of LilMigrations for debugging the properties issue */
class LilMigrationsBug {

    public $prop = 'okay';

    public function ok(){
        function() use ($file){
            return;
        };
        $abc = 'def';
    }
}