Your IP : 216.73.217.13


Current Path : /home/rtorresani/www/vendor/magento/module-cron/Model/ResourceModel/Schedule/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-cron/Model/ResourceModel/Schedule/Collection.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Cron\Model\ResourceModel\Schedule;

/**
 * Schedules Collection
 *
 * @api
 * @since 100.0.2
 */
class Collection extends \Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection
{
    /**
     * Initialize resource collection
     *
     * @return void
     */
    public function _construct()
    {
        $this->_init(\Magento\Cron\Model\Schedule::class, \Magento\Cron\Model\ResourceModel\Schedule::class);
    }
}