Caffeinated\Modules\Contracts\Repository::set PHP Method

set() public method

Set the given module property value.
public set ( string $property, mixed $value ) : boolean
$property string
$value mixed
return boolean
    public function set($property, $value);

Usage Example

Beispiel #1
0
 /**
  * Set a module property value.
  *
  * @param string $property
  * @param mixed  $value
  *
  * @return bool
  */
 public function set($property, $value)
 {
     return $this->repository->set($property, $value);
 }