This file contains 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
Unbrewed dylibs were found in /usr/local/lib. | |
If you didn't put them there on purpose they could cause problems when | |
building Homebrew formulae, and may need to be deleted. | |
Unexpected dylibs: | |
/usr/local/lib/libasprintf.0.0.0.dylib | |
/usr/local/lib/libgettextlib-0.17.dylib | |
/usr/local/lib/libgettextpo.0.4.0.dylib | |
/usr/local/lib/libgettextsrc-0.17.dylib |
This file contains 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
# http://woss.name/2005/09/06/bash-completion-for-mac-os-x-open/ | |
if [ "`uname`" = "Darwin" ]; then | |
_open() { | |
local cur prev | |
COMPREPLY=() | |
cur=${COMP_WORDS[COMP_CWORD]} | |
prev=${COMP_WORDS[COMP_CWORD-1]} | |
if [ "${prev}" = -a ]; then | |
local IFS=$'\n' |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" | |
elementFormDefault="qualified"> | |
<xs:element name="coverage"> | |
<xs:complexType> | |
<xs:annotation> | |
<xs:documentation> | |
Top-most element describing the coverage report. Contains a | |
project and a test project. | |
</xs:documentation> |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<coverage generated="1398370260"> | |
<project timestamp="1398370260"> | |
<package name="aik099\QATools\BEM\Annotation"> | |
<file name=".../library/aik099/QATools/BEM/Annotation/BEMAnnotation.php"> | |
<class name="BEMAnnotation" namespace="aik099\QATools\BEM\Annotation"> | |
<metrics methods="2" coveredmethods="2" conditionals="0" coveredconditionals="0" statements="9" coveredstatements="9" elements="11" coveredelements="11"/> | |
</class> | |
<line num="53" type="method" name="getSelector" crap="2" count="4"/> | |
<line num="55" type="stmt" count="4"/> |
This file contains 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 | |
/** | |
* Example input code: | |
* | |
* 45 => 2, | |
* 11 => 1, | |
* | |
* // Some comment to ignore. | |
* 100 => 12, | |
*/ |
This file contains 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 | |
class PrivateBase | |
{ | |
private $privateProperty = 5; | |
private function privateMethod() | |
{ | |
echo 'PrivateBase:'.$this->privateProperty; |
This file contains 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
Array | |
( | |
[Illuminate\Foundation\Application] => app | |
[Illuminate\Console\Application] => artisan | |
[Illuminate\Auth\AuthManager] => auth | |
[Illuminate\Auth\Reminders\ReminderRepositoryInterface] => auth.reminder.repository | |
[Illuminate\View\Compilers\BladeCompiler] => blade.compiler | |
[Illuminate\Cache\CacheManager] => cache | |
[Illuminate\Cache\Repository] => cache.store | |
[Illuminate\Config\Repository] => config |
This file contains 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 InPortal\Modules\Custom\tests; | |
use Behat\Mink\Element\NodeElement; | |
use InPortal\Core\kernel\tests\BrowserTestCase; | |
class SampleWorkflowTest extends BrowserTestCase | |
{ |
This file contains 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 | |
/** | |
* Magento_Sniffs_WhiteSpace_ScopeIndentSniff | |
* | |
* @category CodeSniffer | |
* @package CodeSniffer_Magento | |
* @author Volodymyr Fesko <[email protected]> | |
* @copyright 2014 Smile | |
*/ |
This file contains 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 | |
defined('FULL_PATH') or die('restricted access!'); | |
/** | |
* Extends default UsersTagProcessor class | |
* | |
*/ | |
class EUserTagProcessor extends UsersTagProcessor { |
OlderNewer