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 | |
$query = $em->createQuery('SELECT u.name FROM CmsUser u WHERE u.id IN(?1)'); | |
$query->setParameter(1, array(1,2,3)); | |
$usernames = $query->getResult(); |
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 | |
// extract file name and path from a full file path /tmp/images/image.jpg | |
$path = '/tmp/images/image.jpg'; | |
list($name, $dir) = array_map('strrev', explode(DIRECTORY_SEPARATOR, strrev(str_replace('/', DIRECTORY_SEPARATOR, $path)), 2)); | |
// or , thanks to @nicholascloud |
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 | |
interface TemplatingAware | |
{ | |
function setTemplating(EngineInterface $engine); | |
} | |
interface RouterAware | |
{ | |
function setRouter(RouterInterface $router); |
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
interface Symfony\Bundle\FrameworkBundle\Request\ParamConverter\ConverterInterface | |
{ | |
function convert($value); | |
function setOption($key, $option); | |
function getOption($key); | |
} |
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
parameters: | |
session.storage.juokaz.options: | |
name: juokaz | |
description: custom_session | |
app.config: | |
session: | |
storage_id: juokaz |
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 BankAccount | |
{ | |
public function debit($amount) | |
{ | |
//... | |
} | |
public function credit($amount) | |
{ |
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
server { | |
listen 80; | |
server_name your_app.lcl; | |
#charset koi8-r; | |
access_log logs/your_app.lcl.access.log main; | |
location / { | |
root c:\www\path\to\your\website; |
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 Symfony\Bundle\FrameworkBundle\Command; | |
use Symfony\Component\Console\Input\InputArgument; | |
use Symfony\Component\Console\Input\InputOption; | |
use Symfony\Component\Console\Input\InputInterface; | |
use Symfony\Component\Console\Output\OutputInterface; | |
use Symfony\Component\Console\Output\Output; | |
use Symfony\Bundle\FrameworkBundle\Util\Filesystem; |
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 MyCompany\Bundle\PaymentBundle\DependencyInjection; | |
use Symfony\Component\DependencyInjection\Extension\Extension; | |
use Symfony\Component\DependencyInjection\ContainerBuilder; | |
class PaymentExtension extends Extension | |
{ | |
/** |
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 Symfony\Component\DependencyInjection; | |
/* | |
* This file is part of the Symfony framework. | |
* | |
* (c) Fabien Potencier <[email protected]> | |
* | |
* This source file is subject to the MIT license that is bundled |