![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/vendor/tightenco/collect/src/Collect/Support/ |
<?php namespace Tightenco\Collect\Support; /** * @mixin \Tightenco\Collect\Support\Enumerable */ class HigherOrderWhenProxy { /** * The collection being operated on. * * @var \Tightenco\Collect\Support\Enumerable */ protected $collection; /** * The condition for proxying. * * @var bool */ protected $condition; /** * Create a new proxy instance. * * @param \Tightenco\Collect\Support\Enumerable $collection * @param bool $condition * @return void */ public function __construct(Enumerable $collection, $condition) { $this->condition = $condition; $this->collection = $collection; } /** * Proxy accessing an attribute onto the collection. * * @param string $key * @return mixed */ public function __get($key) { return $this->condition ? $this->collection->{$key} : $this->collection; } /** * Proxy a method call onto the collection. * * @param string $method * @param array $parameters * @return mixed */ public function __call($method, $parameters) { return $this->condition ? $this->collection->{$method}(...$parameters) : $this->collection; } }