Eugene

Results 3 issues of Eugene

Almost full library for Windows synchronizations.

Looks like getBasePath bug. With router definition. `$router->get("/backend/io\.js", 'IoController@actionIndex');` Inside Router.class `private function patternMatches($pattern, $uri, &$matches, $flags)` After executing with ``` var_dump($uri); // we may have a match! return boolval(preg_match_all('#^'...

Something whong with TYamlArray when TYamlObject with TYamlString inside. ```pascal procedure TfmMain.FormCreate(Sender: TObject); begin var doc := TYamlObject.Create; try doc.AddPair('String', 'Value1'); doc.AddPair('Integer', TYamlInteger.Create(38)); var arr1 := TYamlArray.Create; arr1.AddElement(TYamlString.Create('String1')); arr1.AddElement(TYamlString.Create('String2')); var...