Checks the declaration of the class is correct.
declared in
PHP_CodeSniffer\Standards\PEAR\Sniffs\Classes\ClassDeclarationSniff
| # Create a file called PHPUnitTestMethodPlugin.py in Plugins/ within your Sublime Text Packages folder | |
| # You can run this via Sublime's console with: view.run_command("php_unit_test_method") | |
| # You can bind it to ctrl+e as a regular command | |
| import sublime | |
| import re | |
| import sublime_plugin | |
| class PhpUnitTestMethodCommand(sublime_plugin.TextCommand): | |
| def run(self, edit, lines = 10): |
| // dm Windel Widget | |
| // Basiert auf | |
| // dm Klopapier Widget | |
| // https://gist.github.com/marco79cgn/23ce08fd8711ee893a3be12d4543f2d2 | |
| // | |
| // Copyright (C) 2020 by marco79 <[email protected]> | |
| // | |
| // Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted. | |
| // | |
| // THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL |
| #!/bin/sh | |
| while ! ping -c 1 -W 1 8.8.8.8; do | |
| sleep 1 | |
| done | |
| curl -X POST https://maker.ifttt.com/trigger/pump/with/key/hfjrufjehgfhjgefgegf |
| <snippet> | |
| <content><![CDATA[ | |
| <?php | |
| class ${TM_FILENAME/(.+)\..+|.*/$1/:name} | |
| { | |
| ${0} | |
| } | |
| ]]></content> | |
| <!-- Optional: Set a tabTrigger to define how to trigger the snippet --> |
| --- | |
| - hosts: | |
| - all | |
| become: true | |
| tasks: | |
| - name: Update apt cache | |
| apt: update_cache=yes | |
| - name: Upgrade packages | |
| apt: upgrade=dist |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| apt update && apt -y full-upgrade | |
| apt-get install -y joe-jupp mosh byobu software-properties-common \ | |
| php7.0-intl php7.0-ldap php7.0-mcrypt php7.0-zip php7.0-soap \ | |
| python-setuptools python-simplejson python-imaging python-mysqldb python-flup \ | |
| language-pack-de language-pack-en | |
| update-locale LANG=de_DE.UTF-8 LC_MESSAGES=POSIX |
| # | |
| # MIGRATE MySQL4 DATABASES TO MySQL5 - Steps for dumping and converting | |
| # | |
| # Uses mysqldump and patches output to be compatible with MySQL 5.5+ (? - no sure | |
| # at which specific release of MySQL 5 the old style syntax support ended). | |
| # | |
| # Conversion is most likely incomplete. It does some essential converting where | |
| # I regularly experienced problems during migration. | |
| # | |
| # Use on own risk, always try with test databases first. No warranty at all! |
| #!/bin/sh | |
| # If you would like to do some extra provisioning you may | |
| # add any commands you wish to this file and they will | |
| # be run after the Homestead machine is provisioned. | |
| if [ ! -f /usr/local/extra_homestead_software_installed ]; then | |
| apt-get -y install zsh joe-jupp | |
| git clone git://github.com/robbyrussell/oh-my-zsh.git /home/vagrant/.oh-my-zsh |