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 | |
/* | |
* This file is part of the Symfony package. | |
* | |
* (c) Fabien Potencier <[email protected]> | |
* | |
* For the full copyright and license information, please view the LICENSE | |
* file that was distributed with this source code. | |
*/ |
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 Doctrine\DBAL\Types; | |
use Doctrine\DBAL\Platforms\AbstractPlatform; | |
class CSVType extends StringType | |
{ | |
const NAME = 'csv'; | |
const DELIMITER = ','; |
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 Amqp; | |
use PhpAmqpLib\Channel\AMQPChannel; | |
class QueueBuilder | |
{ | |
/** @var AMQPChannel */ | |
protected $channel; |
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 | |
use Symfony\Component\Config\Definition\Builder\TreeBuilder; | |
use Symfony\Component\Config\Definition\ConfigurationInterface; | |
use Symfony\Component\Config\Definition\Processor; | |
class ConfigurationTest extends \PHPUnit_Framework_TestCase | |
{ | |
/** | |
* @dataProvider provideDefaultValues |
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 | |
use Symfony\Component\EventDispatcher\EventDispatcherInterface; | |
use Symfony\Component\HttpKernel\KernelEvents; | |
use Symfony\Component\EventDispatcher\Event; | |
trait AsyncDispatcherTrait | |
{ | |
/** @var EventDispatcherInterface */ | |
protected $dispatcher; |
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 | |
class CombinatorialIterator implements \Iterator | |
{ | |
protected $valid; | |
protected $iteration; | |
protected $data; | |
public function __construct(array $data = array()) | |
{ |
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 debounce(callback, timeout) { | |
var timer; | |
return function() { | |
timer && clearTimeout(timer); | |
timer = setTimeout(function(args) { | |
timer = null; | |
callback.apply(this, args); | |
}.bind(this, arguments), timeout||100); | |
} | |
} |
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 setSelectionPlugin() { | |
var _setSelectionRange, _getCursorPosition, support = (function() { | |
var input = document.createElement('input'), result; | |
result = { | |
setSelectionRange: ('setSelectionRange' in input) || ('selectionStart' in input), | |
createTextRange: ('createTextRange' in input) || ('selection' in document) | |
}; | |
input = null; | |
return result; | |
}()); |
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
var Stream = (function () { | |
var undefined, empty, proto; | |
function extend(dest, source) { | |
for (var arg = 1; arg < arguments.length; ++arg) { | |
for (var key in arguments[arg]) { | |
if (arguments[arg].hasOwnProperty(key)) { | |
dest[key] = arguments[arg][key]; | |
} | |
} |
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
sf() { | |
local DIR | |
pushd . > /dev/null 2>&1 | |
while ! git exec test -x app/console; do | |
if [ $PWD = "/" ]; then | |
popd > /dev/null 2>&1 | |
echo "Can't find a suitable Symfony application" 1>&2 | |
return 1 | |
fi |