This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"editor.fontSize": 14, | |
"editor.fontFamily": "Liberation Mono for Powerline, Menlo, Monaco, 'Courier New', monospace", | |
"editor.lineHeight": 17, | |
"php.suggest.basic": false, | |
"editor.tabCompletion": "on", | |
"php-docblocker.qualifyClassNames": true, | |
"phpcs.standard": "project/tests/.phpcs.xml", | |
"phpcs.autoConfigSearch": false, | |
"[php]": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# this contains any global variables that are available to any template | |
tokens: | |
field_name: myproject_image | |
replace: | |
"example_image": [field_name] | |
# Here are some sample actions | |
actions: | |
# ***** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class baseClass { | |
protected function protfunc() { | |
return "protBase"; | |
} | |
public function pubfunc() { | |
return "pubBase"; |