for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\SchemaOrg;
/**
* A trip on a commercial bus line.
*
* @see http://schema.org/BusTrip
*/
class BusTrip extends Trip
{
* The stop or station from which the bus arrives.
* @param BusStation|BusStation[]|BusStop|BusStop[] $arrivalBusStop
* @return static
* @see http://schema.org/arrivalBusStop
public function arrivalBusStop($arrivalBusStop)
return $this->setProperty('arrivalBusStop', $arrivalBusStop);
}
* The name of the bus (e.g. Bolt Express).
* @param string|string[] $busName
* @see http://schema.org/busName
public function busName($busName)
return $this->setProperty('busName', $busName);
* The unique identifier for the bus.
* @param string|string[] $busNumber
* @see http://schema.org/busNumber
public function busNumber($busNumber)
return $this->setProperty('busNumber', $busNumber);
* The stop or station from which the bus departs.
* @param BusStation|BusStation[]|BusStop|BusStop[] $departureBusStop
* @see http://schema.org/departureBusStop
public function departureBusStop($departureBusStop)
return $this->setProperty('departureBusStop', $departureBusStop);