Arthur Eshenbrener
- 活动总数 10
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 2
- 订阅数 3
-
Arthur Eshenbrener 进行了评论, -
Arthur Eshenbrener 创建了一个帖子, 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 创建了一个帖子, Custom language injection rule.
Hi!Is there any way to automaticaly inject SQL launguage into PDO::exec()/PDO::query() method first argument? -
Arthur Eshenbrener 进行了评论, -
Arthur Eshenbrener 创建了一个帖子, 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 ...