Skip to content

Commit

Permalink
Update copyright and version
Browse files Browse the repository at this point in the history
  • Loading branch information
nicksagona committed Nov 20, 2019
1 parent 43a9350 commit 62a396a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion LICENSE.TXT
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
BSD 3 Clause License

Copyright (c) 2009-2019, NOLA Interactive, LLC.
Copyright (c) 2009-2020, NOLA Interactive, LLC.
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
10 changes: 5 additions & 5 deletions src/Csv.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @link https://github.com/popphp/popphp-framework
* @author Nick Sagona, III <dev@nolainteractive.com>
* @copyright Copyright (c) 2009-2019 NOLA Interactive, LLC. (http://www.nolainteractive.com)
* @copyright Copyright (c) 2009-2020 NOLA Interactive, LLC. (http://www.nolainteractive.com)
* @license http://www.popphp.org/license New BSD License
*/

Expand All @@ -19,9 +19,9 @@
* @category Pop
* @package Pop\Csv
* @author Nick Sagona, III <dev@nolainteractive.com>
* @copyright Copyright (c) 2009-2019 NOLA Interactive, LLC. (http://www.nolainteractive.com)
* @copyright Copyright (c) 2009-2020 NOLA Interactive, LLC. (http://www.nolainteractive.com)
* @license http://www.popphp.org/license New BSD License
* @version 3.1.0
* @version 3.1.5
*/
class Csv
{
Expand Down Expand Up @@ -51,10 +51,10 @@ public function __construct($data = null)
// If data is a file
if (is_string($data) && (stripos($data, '.csv') !== false) && file_exists($data)) {
$this->string = file_get_contents($data);
// Else, if it's just data
// Else, if it's just data
} else if (!is_string($data)) {
$this->data = $data;
// Else if it's a string or stream of data
// Else if it's a string or stream of data
} else {
$this->string = $data;
}
Expand Down
6 changes: 3 additions & 3 deletions src/Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @link https://github.com/popphp/popphp-framework
* @author Nick Sagona, III <dev@nolainteractive.com>
* @copyright Copyright (c) 2009-2019 NOLA Interactive, LLC. (http://www.nolainteractive.com)
* @copyright Copyright (c) 2009-2020 NOLA Interactive, LLC. (http://www.nolainteractive.com)
* @license http://www.popphp.org/license New BSD License
*/

Expand All @@ -19,8 +19,8 @@
* @category Pop
* @package Pop\Csv
* @author Nick Sagona, III <dev@nolainteractive.com>
* @copyright Copyright (c) 2009-2019 NOLA Interactive, LLC. (http://www.nolainteractive.com)
* @copyright Copyright (c) 2009-2020 NOLA Interactive, LLC. (http://www.nolainteractive.com)
* @license http://www.popphp.org/license New BSD License
* @version 3.1.0
* @version 3.1.5
*/
class Exception extends \Exception {}

0 comments on commit 62a396a

Please sign in to comment.