for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Surfnet\StepupMiddlewareClientBundle\Configuration\Service;
use Surfnet\StepupMiddlewareClient\Configuration\Service\InstitutionWithPersonalRaLocationsService as LibraryInstitutionWithPersonalRaLocationsService;
Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.
class InstitutionWithPersonalRaLocationsService
{
/**
* @var LibraryInstitutionWithPersonalRaLocationsService
*/
private $service;
public function __construct(LibraryInstitutionWithPersonalRaLocationsService $service)
$this->service = $service;
}
* @param string $institution
* @return bool
public function institutionHasPersonalRaLocations($institution)
return $this->service->institutionHasPersonalRaLocations($institution);
Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.