Item Type
Item Name
Search file in folder and subfolders...
<?php namespace OTGS\Installer\FP\Traits; trait Applicative { /** * @param mixed $otherContainer * * @return mixed */ public function ap( $otherContainer ) { return $otherContainer->map( $this->value ); } }