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 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
| # add all new files to svn repo | |
| svn status | grep ? | xargs svn add | |
| # add to remove from svn (in next commit) all localy deleted files | |
| svn status | grep \! | sed 's/\!//' | xargs svn delete | |
| # after manually resolving conflict | |
| svn resolve PATH --accept working | |
| # ssh checkout |
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
| { | |
| "color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme", | |
| "detect_indentation": true, | |
| "detect_slow_plugins": false, | |
| "font_face": "consolas", | |
| "font_size": 10, | |
| "highlight_line": true, | |
| "ignored_packages": | |
| [ | |
| "Vintage", |
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 | |
| // execute raw SQL | |
| Doctrine_Manager::connection()->exec('SQL'); |
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 | |
| namespace Phalcon\Validation\Validator\Db; | |
| use Phalcon\Validation\Validator; | |
| use Phalcon\Validation\ValidatorInterface; | |
| use Phalcon\Validation\Message; | |
| use Phalcon\Db\Adapter\Pdo as DbConnection; | |
| use Phalcon\Validation\Exception as ValidationException; | |
| class Uniqueness extends Validator implements ValidatorInterface |
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 | |
| namespace App; | |
| use Nest\Application\Cli as Application; | |
| class Cli extends Application | |
| { | |
| public function configure() | |
| { | |
| $this->add(new Task\I18n\SynchronizeCommand($this->di->get('config'))); |
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 | |
| namespace Codeception\Module; | |
| use Codeception\Module; | |
| use Codeception\PHPUnit\AssertWrapper; | |
| use Closure; | |
| class DevHelper extends Module | |
| { | |
| private $testSubject; |
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
| $(function() { | |
| var centerAbsolute = function () { | |
| $('.absolute-center').css({ | |
| position:'absolute', | |
| left: ($(window).width() - $('.absolute-center').outerWidth())/2, | |
| top: ($(window).height() - $('.absolute-center').outerHeight())/2 | |
| }); | |
| } | |
| centerAbsolute(); |
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 | |
| namespace AppBundle\Entity\User | |
| class EmailAddress | |
| { | |
| private $address; | |
| public function __construct($address) | |
| { |
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
| AppBundle\Entity\User\EmailAddress: | |
| type: embeddable | |
| fields: | |
| address: | |
| column: email | |
| type: string | |
| length: '250' |
OlderNewer