mirror of https://github.com/itflow-org/itflow
26 lines
425 B
PHP
26 lines
425 B
PHP
<?php
|
|
/*
|
|
* File: FolderCollection.php
|
|
* Category: Collection
|
|
* Author: M. Goldenbaum
|
|
* Created: 18.03.18 02:21
|
|
* Updated: -
|
|
*
|
|
* Description:
|
|
* -
|
|
*/
|
|
|
|
namespace Webklex\PHPIMAP\Support;
|
|
|
|
use Illuminate\Support\Collection;
|
|
use Webklex\PHPIMAP\Folder;
|
|
|
|
/**
|
|
* Class FolderCollection
|
|
*
|
|
* @package Webklex\PHPIMAP\Support
|
|
* @implements Collection<int, Folder>
|
|
*/
|
|
class FolderCollection extends PaginatedCollection {
|
|
|
|
} |