Skip to content

Commit

Permalink
Replaced CLRF by LF and cleaned files
Browse files Browse the repository at this point in the history
  • Loading branch information
francisbesset committed Oct 9, 2011
1 parent cd2d8d9 commit b270a51
Show file tree
Hide file tree
Showing 3 changed files with 302 additions and 302 deletions.
58 changes: 29 additions & 29 deletions src/BeSimple/SoapServer/SoapServer.php
Original file line number Original file line Diff line number Diff line change
@@ -1,29 +1,29 @@
<?php <?php


/* /*
* This file is part of the BeSimpleSoapServer. * This file is part of the BeSimpleSoapServer.
* *
* (c) Christian Kerl <christian-kerl@web.de> * (c) Christian Kerl <christian-kerl@web.de>
* (c) Francis Besset <francis.besset@gmail.com> * (c) Francis Besset <francis.besset@gmail.com>
* *
* This source file is subject to the MIT license that is bundled * This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE. * with this source code in the file LICENSE.
*/ */


namespace BeSimple\SoapServer; namespace BeSimple\SoapServer;


/** /**
* @author Christian Kerl * @author Christian Kerl <christian-kerl@web.de>
*/ */
class SoapServer extends \SoapServer class SoapServer extends \SoapServer
{ {
public function __construct($wsdl, array $options = array()) public function __construct($wsdl, array $options = array())
{ {
parent::__construct($wsdl, $options); parent::__construct($wsdl, $options);
} }

public function handle($soap_request = null) public function handle($soap_request = null)
{ {
parent::handle($soap_request); parent::handle($soap_request);
} }
} }
Loading

0 comments on commit b270a51

Please sign in to comment.