cmd + alt + esc
find <source-path> -name "Y"
docker run -d -p 8090:80 -v ${PWD}:/var/www/html/ php:7.3-apache |
function NEW(constructor, argsArray) { | |
var obj = {}; // step 1 | |
obj.__proto__ = constructor.prototype; // step 2 | |
constructor.apply(obj, argsArray); // step 3 | |
return obj; // step 4 | |
} | |
function Parent(name) { | |
this.name = name; | |
} | |
Parent.prototype.greet = function() { |
var Greeter = /** @class */ (function () { | |
function Greeter(message) { | |
this.greeting = message; | |
} | |
Greeter.prototype.greet = function () { | |
return "Hello, " + this.greeting; | |
}; | |
return Greeter; | |
}()); | |
var greeter = new Greeter("world"); |
[xdebug] | |
xdebug.remote_enable=1 | |
xdebug.remote_host=localhost | |
xdebug.remote_port=9000 | |
xdebug.remote_handler=dbgp | |
xdebug.idekey=PHPSTORM |