for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Neo\EarlyAccess\Traits;
use Neo\EarlyAccess\Facades\EarlyAccess;
trait InteractsWithEarlyAccess
{
/**
* @return bool
*/
public function isEarlyAccessEnabled(): bool
return EarlyAccess::isEnabled();
}
* @param array $data
* @return mixed
public function saveBeacon(array $data = [])
return EarlyAccess::saveBeacon($data);
public function deleteBeacon()
return EarlyAccess::deleteBeacon();
public function getBeaconDetails()
return EarlyAccess::getBeaconDetails();
public function getAllowedNetworks()
return EarlyAccess::allowedNetworks();
* @param array $networks
public function addAllowedNetworksToBeacon(array $networks)
return EarlyAccess::addAllowedNetworksToBeacon($networks);