Skip to content
This repository was archived by the owner on Mar 5, 2022. It is now read-only.

Commit 2205d0c

Browse files
author
Florian Krämer
committed
Updating the copyright year in the doc blocks.
1 parent 8dcab8a commit 2205d0c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+56
-56
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
FileStorage Plugin for CakePHP
22
==============================
33

4-
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.txt)
5-
[![Build Status](https://img.shields.io/travis/burzum/cakephp-file-storage/3.0.svg?style=flat-square)](https://travis-ci.org/burzum/cakephp-file-storage)
4+
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.txt)
5+
[![Build Status](https://img.shields.io/travis/burzum/cakephp-file-storage/3.0.svg?style=flat-square)](https://travis-ci.org/burzum/cakephp-file-storage)
66
[![Coverage Status](https://img.shields.io/coveralls/burzum/cakephp-file-storage/3.0.svg?style=flat-square)](https://coveralls.io/r/burzum/cakephp-file-storage)
77

88
**If you're upgrading from CakePHP 2.x please read [the migration guide](docs/Documentation/Migrating-from-CakePHP-2.md).**
@@ -73,7 +73,7 @@ To contribute to this plugin please follow a few basic rules.
7373
License
7474
-------
7575

76-
Copyright 2012 - 2015, Florian Krämer
76+
Copyright 2012 - 2016, Florian Krämer
7777

7878
Licensed under The MIT License
7979
Redistributions of files must retain the above copyright notice.

config/Schema/schema.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
<?php
1+
<?php
22
/**
33
* FileStorage
44
*
55
* @author Florian Kr�mer
6-
* @copyright 2012 - 2015 Florian Kr�mer
6+
* @copyright 2012 - 2016 Florian Kr�mer
77
* @license MIT
88
*/
99
class FileStorageSchema extends CakeSchema {

src/Event/AbstractStorageEventListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* - path
2929
*
3030
* @author Florian Krämer
31-
* @copyright 2012 - 2015 Florian Krämer
31+
* @copyright 2012 - 2016 Florian Krämer
3232
* @license MIT
3333
*/
3434
abstract class AbstractStorageEventListener implements EventListenerInterface {

src/Lib/FileStorageUtils.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* @author Florian Krämer
4-
* @copyright 2012 - 2015 Florian Krämer
4+
* @copyright 2012 - 2016 Florian Krämer
55
* @license MIT
66
*/
77
namespace Burzum\FileStorage\Lib;

src/Lib/StorageManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* StorageManager - manages and instantiates gaufrette storage engine instances
88
*
99
* @author Florian Krämer
10-
* @copyright 2012 - 2015 Florian Krämer
10+
* @copyright 2012 - 2016 Florian Krämer
1111
* @license MIT
1212
*
1313
* @deprecated Use \Burzum\FileStorage\Storage\StorageManager instead.

src/Model/Behavior/UploadValidatorBehavior.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* little less code by using it.
2323
*
2424
* @author Florian Krämer
25-
* @copyright 2012 - 2015 Florian Krämer
25+
* @copyright 2012 - 2016 Florian Krämer
2626
* @license MIT
2727
*/
2828
class UploadValidatorBehavior extends Behavior {

src/Model/Entity/FileStorage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* FileStorage Entity.
1010
*
1111
* @author Florian Krämer
12-
* @copyright 2012 - 2015 Florian Krämer
12+
* @copyright 2012 - 2016 Florian Krämer
1313
* @license MIT
1414
*/
1515
class FileStorage extends Entity {

src/Model/Entity/ImageStorage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* FileStorage Entity.
88
*
99
* @author Florian Krämer
10-
* @copyright 2012 - 2015 Florian Krämer
10+
* @copyright 2012 - 2016 Florian Krämer
1111
* @license MIT
1212
*/
1313
class ImageStorage extends FileStorage {

src/Model/Table/FileStorageTable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* FileStorageTable
1717
*
1818
* @author Florian Krämer
19-
* @copyright 2012 - 2015 Florian Krämer
19+
* @copyright 2012 - 2016 Florian Krämer
2020
* @license MIT
2121
*/
2222
class FileStorageTable extends Table {

src/Model/Table/ImageStorageTable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* ImageStorageTable
1515
*
1616
* @author Florian Krämer
17-
* @copyright 2012 - 2015 Florian Krämer
17+
* @copyright 2012 - 2016 Florian Krämer
1818
* @license MIT
1919
*/
2020
class ImageStorageTable extends FileStorageTable {

0 commit comments

Comments
 (0)