Arthur Eshenbrener
- Total activity 10
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 2
- Subscriptions 3
-
Arthur Eshenbrener commented, -
Arthur Eshenbrener created a post, Setup language injection into tagged es6 template strings
ES6 brings us new feature called template strings, which can be tagged (actually processed with a function). This feature is very useful to wrap SQL: ``` import {SQL} from "sql-template-strings" ... -
Arthur Eshenbrener created a post, Custom language injection rule.
Hi!Is there any way to automaticaly inject SQL launguage into PDO::exec()/PDO::query() method first argument? -
Arthur Eshenbrener commented, -
Arthur Eshenbrener created a post, How to documenting a class decorator?
Hi!I have some class like this:class A { public function method1() { /** do somethig **/ } public function method2() { /** do somethig **/ } public function method3() { /** do somethig ...