32 lines
701 B
PHP
32 lines
701 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the BeSimpleSoapCommon.
|
|
*
|
|
* (c) Christian Kerl <christian-kerl@web.de>
|
|
* (c) Francis Besset <francis.besset@gmail.com>
|
|
*
|
|
* This source file is subject to the MIT license that is bundled
|
|
* with this source code in the file LICENSE.
|
|
*/
|
|
|
|
namespace BeSimple\SoapCommon\Converter;
|
|
|
|
use BeSimple\SoapCommon\SoapKernel;
|
|
|
|
/**
|
|
* Internal type converter interface.
|
|
*
|
|
* @author Andreas Schamberger <mail@andreass.net>
|
|
*/
|
|
interface SoapKernelAwareInterface
|
|
{
|
|
/**
|
|
* Set SoapKernel instance.
|
|
*
|
|
* @param \BeSimple\SoapCommon\SoapKernel $soapKernel SoapKernel instance
|
|
*
|
|
* @return void
|
|
*/
|
|
function setKernel(SoapKernel $soapKernel);
|
|
} |