for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Runalyze Device List.
*
* (c) RUNALYZE <[email protected]>
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace Runalyze\Devices\Distributor;
use Runalyze\Devices\Device\DeviceProfile;
class Epson extends AbstractDistributor
{
public function getEnum()
return DistributorProfile::EPSON;
}
public function getName()
return 'Epson';
public function getDeviceEnumList()
return [
DeviceProfile::EPSON_S_F_310,
DeviceProfile::EPSON_S_F_510,
DeviceProfile::EPSON_S_F_510_F,
DeviceProfile::EPSON_S_F_710_S,
DeviceProfile::EPSON_S_F_810,
DeviceProfile::EPSON_UNKNOWN,
];