branch: externals/phpinspect commit 25f706077a34cae69fc638d79ea882a2d8b80625 Author: Hugo Thunnissen <de...@hugot.nl> Commit: Hugo Thunnissen <de...@hugot.nl>
Add license header and `provide' statement --- phpinspect-class.el | 2 +- phpinspect-method-cell.el | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/phpinspect-class.el b/phpinspect-class.el index 21c06ba69b..012dc7cbbf 100644 --- a/phpinspect-class.el +++ b/phpinspect-class.el @@ -1,4 +1,4 @@ -;;; phpinspect-class.el --- PHP parsing module -*- lexical-binding: t; -*- +;;; phpinspect-class.el --- A model for php type definitions -*- lexical-binding: t; -*- ;; Copyright (C) 2021-2023 Free Software Foundation, Inc diff --git a/phpinspect-method-cell.el b/phpinspect-method-cell.el index 31f41795f6..093200624f 100644 --- a/phpinspect-method-cell.el +++ b/phpinspect-method-cell.el @@ -1,4 +1,29 @@ +;;; phpinspect-method-cell.el --- Models for PHP method definitions -*- lexical-binding: t; -*- +;; Copyright (C) 2021-2023 Free Software Foundation, Inc + +;; Author: Hugo Thunnissen <de...@hugot.nl> +;; Keywords: php, languages, tools, convenience +;; Version: 1.2.1 + +;; This program is free software; you can redistribute it and/or modify +;; it under the terms of the GNU General Public License as published by +;; the Free Software Foundation, either version 3 of the License, or +;; (at your option) any later version. + +;; This program is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. + +;; You should have received a copy of the GNU General Public License +;; along with this program. If not, see <https://www.gnu.org/licenses/>. + +;;; Commentary: + +;;; Code: + +(require 'cl-macs) (cl-defstruct (phpinspect-method (:constructor phpinspect-make-method) @@ -120,3 +145,6 @@ When NAME is provided, only method with NAME is deleted." (setcdr cons nil)))) ;; Delete all empty cells (setf (phpi-mcol-cells mcol) (delete (cons nil nil) cells))))) + +(provide 'phpinspect-method-cell) +;;; phpinspect-method-cell.el ends here