oont-contents/plugins/woocommerce-square/vendor/apimatic/jsonmapper/tests/JsonMapperTest/Broken.php
2025-02-08 15:10:23 +01:00

37 lines
774 B
PHP

<?php
/**
* Part of JsonMapper
*
* PHP version 5
*
* @category Netresearch
* @package JsonMapper
* @author Christian Weiske <christian.weiske@netresearch.de>
* @license OSL-3.0 http://opensource.org/licenses/osl-3.0
* @link http://www.netresearch.de/
*/
/**
* Unit test helper class for testing property mapping
*
* @category Netresearch
* @package JsonMapper
* @author Christian Weiske <christian.weiske@netresearch.de>
* @license OSL-3.0 http://opensource.org/licenses/osl-3.0
* @link http://www.netresearch.de/
*/
class JsonMapperTest_Broken
{
/**
* @var ArrayObject[ThisClassDoesNotExist]
*/
public $pTypedArrayObjectNoClass;
/**
*
* @var string
* @required
*/
public $pMissingData;
}
?>