This is a list of issues or discrepencies between the wording or intention of PSR-2 itself and the CodeSniffer PSR-2 ruleset.
Add suggestions in the comments or tweet me (@philsturgeon) if you have more inconsistencies to report.
| #!/usr/bin/env ruby | |
| shutdown = false | |
| cnf_path = '/usr/local/etc/my_ramdisk.cnf' | |
| ramdisk_path = '/Volumes/RAMDisk' | |
| loop { case ARGV[0] | |
| when 'shutdown' then ARGV.shift; shutdown = true | |
| else break | |
| end; } |
This is a list of issues or discrepencies between the wording or intention of PSR-2 itself and the CodeSniffer PSR-2 ruleset.
Add suggestions in the comments or tweet me (@philsturgeon) if you have more inconsistencies to report.
| set nocompatible " Disable vi-compatibility | |
| set t_Co=256 | |
| colorscheme xoria256 | |
| set guifont=menlo\ for\ powerline:h16 | |
| set guioptions-=T " Removes top toolbar | |
| set guioptions-=r " Removes right hand scroll bar | |
| set go-=L " Removes left hand scroll bar | |
| set linespace=15 |
| /** | |
| * Notes and various links mentioned in | |
| * FVCP and FVDrupalCamp 2014 | |
| * on web page speed, testing and loading | |
| */ | |
| Developer Tools in browser. | |
| Load page under Network | |
| Can save load meta data as HAR file (rt click / save as HAR with content) |
| The MIT License (MIT) | |
| Copyright (c) 2015 Justin Perry | |
| Permission is hereby granted, free of charge, to any person obtaining a copy of | |
| this software and associated documentation files (the "Software"), to deal in | |
| the Software without restriction, including without limitation the rights to | |
| use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | |
| the Software, and to permit persons to whom the Software is furnished to do so, | |
| subject to the following conditions: |
| <?php | |
| declare(strict_types=1); | |
| namespace SymfonyLive\Mastermind\Adapters\Database; | |
| use Doctrine\Common\Persistence\ManagerRegistry; | |
| use Doctrine\Common\Persistence\ObjectManager; | |
| use Doctrine\ORM\Tools\SchemaTool; | |
| use RuntimeException; |