created bundle and core classes

This commit is contained in:
Christian Kerl
2010-10-04 20:27:00 +02:00
parent 4edda0256d
commit 843814ccdf
5 changed files with 75 additions and 0 deletions

14
SoapRequest.php Normal file
View File

@ -0,0 +1,14 @@
<?php
namespace Bundle\WebServiceBundle;
use Symfony\Component\HttpFoundation\Request;
class SoapRequest extends Request
{
protected $soapAction;
protected $soapHeader;
protected $soapParameter;
}