- version 3.6
Check those constraints:
$this->anything()
| # remove specific file from git cache | |
| git rm --cached filename | |
| # remove all files from git cache | |
| git rm -r --cached . | |
| git add . | |
| git commit -m ".gitignore is now working" |
| Possible values for ext-name: | |
| bcmath | |
| bz2 | |
| calendar | |
| ctype | |
| curl | |
| dba | |
| dom | |
| enchant |
| $.ajax({ | |
| url: 'api/url', | |
| method: 'POST', | |
| data: {var:'val'}, | |
| // data: JSON.stringify({var:'val'}), // send data in the request body | |
| // contentType: "application/json; charset=utf-8", // if sending in the request body | |
| dataType: 'json' | |
| }).done(function(data, textStatus, jqXHR) { | |
| // because dataType is json 'data' is guaranteed to be an object | |
| console.log('done'); |