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
monolog: | |
handlers: | |
main: | |
type: rotating_file | |
path: %kernel.logs_dir%/%kernel.environment%.log | |
level: error | |
max_files: 10 | |
action_level: error | |
bubble: true | |
slack: |
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
monolog: | |
handlers: | |
main: | |
type: rotating_file | |
path: %kernel.logs_dir%/%kernel.environment%.log | |
level: error | |
max_files: 10 | |
action_level: error | |
bubble: true | |
grouped: |
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 MyBundle\Form\Extension; | |
use Symfony\Component\Form\AbstractType; | |
use Symfony\Component\OptionsResolver\OptionsResolver; | |
use Symfony\Component\Form\Extension\Core\Type\DateTimeType; | |
/** | |
* Class FlatpickrDateTimeType | |
* @package MyBundle\Form\Extension |
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
{# 1: Setup --------------------------------- #} | |
{# https://clipboardjs.com/ #} | |
{# 2: Input group -------------------------- #} | |
<div class="input-group"> | |
<label for="vcsRepo" class="input-group-label">{{ entity.vcsSystem }}:</label> | |
<input type="text" class="input-group-field" id="vcsRepo" name="vcsRepo" value="{{ entity.vcsRepo }}" /> | |
<div class="input-group-button"> | |
<button id="copyRepo" | |
data-clipboard-target="#vcsRepo" |
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 Common\ContentBundle\Entity; | |
... | |
use Gedmo\Mapping\Annotation as Gedmo; | |
class ProductCategory | |
{ | |
... | |
/** | |
* @var integer $position |
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 Common\ContentBundle\DataTransformer; | |
use Symfony\Component\Form\DataTransformerInterface; | |
/** | |
* Class MarkdownTransformer | |
* @package Common\ContentBundle\DataTransformer | |
*/ | |
class MarkdownTransformer implements DataTransformerInterface |
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 | |
/** | |
* Created by [email protected] | |
* User: rwade | |
* Date: 4/26/17 | |
* Time: 9:53 AM | |
* @todo update output to be buffered realtime output | |
* @todo colored output | |
*/ | |
namespace AppBundle\Command; |
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 Hoyt\UtilBundle; | |
use Aws\S3\S3Client; | |
/** | |
* Class AmazonS3Service | |
* | |
* @package Hoyt\UtilBundle | |
*/ |
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 | |
/** | |
* Created by PhpStorm. | |
* User: [email protected] | |
* Date: 10/2/17 | |
* Time: 12:18 PM | |
*/ | |
namespace Hoyt\UtilBundle; |