<?php
namespace App\Services;
use SomeInterface;
class MyService
{
private $data = true;
public function __construct(SomeInterface $data)
{
$this->data = (bool)$data;
}
public function getData()
{
return $this->data;
}
}