diff --git a/LICENSE.TXT b/LICENSE.TXT index 1172d7f..191f9e9 100644 --- a/LICENSE.TXT +++ b/LICENSE.TXT @@ -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 diff --git a/src/Csv.php b/src/Csv.php index 31414be..83d4e3f 100644 --- a/src/Csv.php +++ b/src/Csv.php @@ -4,7 +4,7 @@ * * @link https://github.com/popphp/popphp-framework * @author Nick Sagona, III - * @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 */ @@ -19,9 +19,9 @@ * @category Pop * @package Pop\Csv * @author Nick Sagona, III - * @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 { @@ -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; } diff --git a/src/Exception.php b/src/Exception.php index 43bfc2c..a8dd3d4 100644 --- a/src/Exception.php +++ b/src/Exception.php @@ -4,7 +4,7 @@ * * @link https://github.com/popphp/popphp-framework * @author Nick Sagona, III - * @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 */ @@ -19,8 +19,8 @@ * @category Pop * @package Pop\Csv * @author Nick Sagona, III - * @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 {}