|
aa0b750f47
|
Revert "Array support change"
This reverts commit 3f2a99adf6133910f36bf00f19a57accb59e1e40.
|
2019-09-12 11:43:53 +02:00 |
|
Gianluigi 'cocciagialla' Mammarella
|
2d36e5f060
|
Fix compatibility with SF4 + Other fixes
|
2019-04-02 14:58:41 +02:00 |
|
Michael Veroux
|
3f2a99adf6
|
Array support change
Support of mapping xml attributes
|
2019-02-11 12:28:54 +01:00 |
|
Francis Besset
|
e765ea746e
|
[SoapBundle] Moved configuration of ComplexType aliases from config to PHP objects with annotations
Before:
``` yaml
be_simple_soap:
services_classmap:
Cutomer: My\Bundle\Entity\Customer
Cart: My\Bundle\Entity\Cart
After:
``` php
<?php
namespace My\Bundle\Entity;
use BeSimple\SoapBundle\ServiceDefinition\Annotation as Soap;
/**
* @Soap\Alias("Customer")
*/
class Customer
{
// ... your PHP code
}
/**
* @Soap\Alias("Cart")
*/
class Cart
{
// ... your PHP code
}
|
2013-08-05 09:40:39 +02:00 |
|
Francis Besset
|
9328c98935
|
Add 'src/BeSimple/SoapBundle/' from commit 'e99f707b105c0a0472260d8d42a5a14a7fb7a211'
git-subtree-dir: src/BeSimple/SoapBundle
git-subtree-mainline: 9a8d23fa23302486c56f1521a267c65a04eb8b87
git-subtree-split: e99f707b105c0a0472260d8d42a5a14a7fb7a211
|
2013-07-19 17:00:11 +02:00 |
|