D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
www
/
vendor
/
maatwebsite
/
excel
/
src
/
Maatwebsite
/
Excel
/
Collections
/
Filename :
ExcelCollection.php
back
Copy
<?php namespace Maatwebsite\Excel\Collections; use Illuminate\Support\Collection; /** * * LaravelExcel ExcelCollection * * @category Laravel Excel * @version 1.0.0 * @package maatwebsite/excel * @copyright Copyright (c) 2013 - 2014 Maatwebsite (http://www.maatwebsite.nl) * @author Maatwebsite <info@maatwebsite.nl> * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL */ class ExcelCollection extends Collection { /** * Sheet title * @var [type] */ protected $title; /** * Get the title * @return string */ public function getTitle() { return $this->title; } /** * Set the title * @param $title */ public function setTitle($title) { $this->title = $title; } }