for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Xsolve\Associate\ObjectCollection;
class NonObjectWrapper
{
/**
* @var mixed
*/
protected $nonObject;
* @param mixed $nonObject
public function __construct($nonObject)
$this->nonObject = $nonObject;
}
* @return mixed
public function unwrap()
return $this->nonObject;