-
```
dotnet new -i Peachpie.Templates::*
dotnet new peachpie-console
dotnet restore
dotnet run
```
Gives me:
`error MSB4020: The value "" of the "Project" attribute in element is invalid.`
I…
-
Hello,
I have this warning when compiling a PHP Project.
I thought SplFileInfo was native PHP class.
Regards,
-
When the `expr` parameter is type `Devsense.PHP.Syntax.Ast.DirectFcnCall`, an infinite loop occurs. It goes from:
var bound = BindExpressionCore(expr, access); // (Line 298)
if (expr is …
-
See the following test case:
```php
-
What I mean by this is, ASP.NET Core creates a folder named `wwwroot` and that's where the server's static files.
Can I store PHP files in there, and per request they just "work," like many webserv…
-
This test-case shows 'A is wrong' instead of 'A is ok':
```
$a = new stdClass();
$a->test = 'ok';
$ptr = & $a->test; // test; // This reference corrupts $a's clonation
unset($ptr);
```
-
Implement support for using `trait`s.
See http://php.net/manual/en/language.oop5.traits.php for specs.
Used trait should be instantiated inside the class as a private "compiler-generated" object.…
-
PHP Closure allows to change scope using bind (http://php.net/manual/en/closure.bind.php). This allows to change accessibility of type members within the closure.
-
The reason for this is the missing type context of such call site (related to #96). See the following test case:
```php
-
I'm trying to build this barcode generator class:
[https://gist.github.com/TyKonKet/62c6b5dc4563974b8b37d27644d3df09](https://gist.github.com/TyKonKet/62c6b5dc4563974b8b37d27644d3df09)
But I get t…