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
| if (!$user->getBalancedUri()) { | |
| $this->get('jm_balancedpayment.payment.manager')->createAccount($user); // --> this line caused error, | |
| } | |
| https://github.com/kozog/JmBalancedPaymentBundle/blob/master/Model/PaymentManager.php#L44 (this is my fork of that bundle because of incompatibility in dependencies) |
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
| build_settings: | |
| ignore: | |
| - "vendor" | |
| - "tests" | |
| setup: | |
| composer: | |
| action: "install" | |
| shell: | |
| - "%BUILD_PATH%/app/console doctrine:schema:drop --force" |
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 Geolocator (modernizr, jquery, fallbackApi) { | |
| this.jquery = jquery; | |
| this.modernizr = modernizr; | |
| this.fallbackApi = fallbackApi; | |
| } | |
| Geolocator.prototype.is64BitFirefox = function () { | |
| var pattern = /.+Ubuntu.+Linux x86_64.+Firefox.+$/; | |
| var match = navigator.userAgent.match(pattern); |
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
| namespace kp\BloggerBundle\Entity; | |
| use Doctrine\ORM\Mapping as ORM; | |
| use Doctrine\Common\Collections\ArrayCollection; | |
| use Doctrine\Common\Collections\Collection; | |
| use Sylius\Bundle\CategorizerBundle\Entity\NestedCategory as BaseCategory; | |
| use Gedmo\Mapping\Annotation as Gedmo; | |
| /** | |
| * Blog category. |
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 Configuration implements ConfigurationInterface | |
| { | |
| /** | |
| * {@inheritDoc} | |
| */ | |
| public function getConfigTreeBuilder() | |
| { | |
| $treeBuilder = new TreeBuilder(); | |
| $rootNode = $treeBuilder->root('kp_media'); |
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
| parameters: | |
| kp_media: | |
| linkmap: | |
| "Sylius\\Sandbox\\Bundle\\AssortmentBundle\\Entity\\Product": "kp\\MediaBundle\\Entity\\ProductMedia" | |
| uploader: | |
| media_path: uploads | |
| www_root: public | |
| imager: | |
| options: | |
| lib: gd |