for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\Analytics\Exceptions;
use Exception;
class InvalidConfiguration extends Exception
{
public static function viewIdNotSpecified()
return new static('There was no view ID specified. You must provide a valid view ID to execute queries on Google Analytics.');
}
public static function credentialsJsonDoesNotExist(string $path)
return new static("Could not find a credentials file at `{$path}`.");