@ -0,0 +1,19 @@
{
"version": "0.2.0",
"configurations": [
"name": "Listen for XDebug",
"type": "php",
"request": "launch",
"port": 9055
},
"name": "Launch currently open script",
"program": "${file}",
"cwd": "${fileDirname}",
}
]
@ -0,0 +1,4 @@
"php.suggest.basic": false,
"php.validate.executablePath": "/usr/bin/php"
@ -0,0 +1,8 @@
<?php
include dirname(dirname(__FILE__)) . "/vendor/autoload.php";
use Blobt\Luxcore\OpenCL;
$opencl = new OpenCL();
echo $opencl;
@ -0,0 +1,9 @@
namespace Blobt\Luxcore;
class Base {
public function __toString(){
return "sasasasa";
class OpenCL extends Base{
public $cpuUse;
public $gpuUse;
?>