Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
| Ctrl+C | copy current line (if no selection) |
| Ctrl+X | cut current line (if no selection) |
| Ctrl+⇧+K | delete line |
| Ctrl+↩ | insert line after |
| <?php | |
| use Illuminate\Foundation\Testing\WithoutMiddleware; | |
| use Illuminate\Foundation\Testing\DatabaseMigrations; | |
| use Illuminate\Foundation\Testing\DatabaseTransactions; | |
| class ExamplePassportTest extends \PassportTestCase | |
| { | |
| use DatabaseTransactions; |
| <?php | |
| namespace App\Providers; | |
| use Illuminate\Support\ServiceProvider; | |
| class GoogleDriveServiceProvider extends ServiceProvider | |
| { | |
| /** | |
| * Bootstrap the application services. |
| Phalcon Developer Tools | |
| http://docs.phalconphp.com/en/latest/reference/wintools.html | |
| Possible errros: | |
| 1) In your wamp\xamp phalcon extension is loaded, but | |
| Runing phalcon.bat: | |
| - ERROR: Phalcon extension isn't installed, follow these instrution to install | |
| This is because php used in command line is using another php.ini file. |
Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
| Ctrl+C | copy current line (if no selection) |
| Ctrl+X | cut current line (if no selection) |
| Ctrl+⇧+K | delete line |
| Ctrl+↩ | insert line after |
| (function () { | |
| if (!Worker) //Detect IE | |
| document.location = "http://www.whatbrowser.org/ru/browser/"; | |
| })(); |