[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/phpinspect 25f706077a 06/30: Add license header and `pr
From: |
ELPA Syncer |
Subject: |
[elpa] externals/phpinspect 25f706077a 06/30: Add license header and `provide' statement |
Date: |
Sat, 31 Aug 2024 09:58:51 -0400 (EDT) |
branch: externals/phpinspect
commit 25f706077a34cae69fc638d79ea882a2d8b80625
Author: Hugo Thunnissen <devel@hugot.nl>
Commit: Hugo Thunnissen <devel@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 <devel@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
- [elpa] externals/phpinspect bf03a87c7f 17/30: Remove obsolete class test, (continued)
- [elpa] externals/phpinspect bf03a87c7f 17/30: Remove obsolete class test, ELPA Syncer, 2024/08/31
- [elpa] externals/phpinspect b6978105e5 25/30: Fix: Don't discard first char after opening brace of class block, ELPA Syncer, 2024/08/31
- [elpa] externals/phpinspect fe4f73661c 21/30: Make import removal configurable, ELPA Syncer, 2024/08/31
- [elpa] externals/phpinspect 5f44a51a75 16/30: Re-use last completion list when possible, ELPA Syncer, 2024/08/31
- [elpa] externals/phpinspect 9c0959a0df 11/30: Add some docstrings + a license header to phpinspect-typedef.el, ELPA Syncer, 2024/08/31
- [elpa] externals/phpinspect 52626b7091 18/30: Remove unused defun, ELPA Syncer, 2024/08/31
- [elpa] externals/phpinspect 4f85ef04a5 23/30: Remove debug statement, ELPA Syncer, 2024/08/31
- [elpa] externals/phpinspect 95a29a3982 30/30: Bump version to 2.0.0, ELPA Syncer, 2024/08/31
- [elpa] externals/phpinspect 9029072bc9 02/30: Fix bug in indexation of live edited buffer (function with preceding bareword in scope), ELPA Syncer, 2024/08/31
- [elpa] externals/phpinspect 87b86812ff 04/30: Implement initial algorithm for indexation of traits, ELPA Syncer, 2024/08/31
- [elpa] externals/phpinspect 25f706077a 06/30: Add license header and `provide' statement,
ELPA Syncer <=
- [elpa] externals/phpinspect 96ee3c4d2a 05/30: WIP: (method-cell) Basic infrastructure for nuanced method inheritance, ELPA Syncer, 2024/08/31
- [elpa] externals/phpinspect 355b6be79a 07/30: Fix typo, ELPA Syncer, 2024/08/31
- [elpa] externals/phpinspect c0c9e2992e 26/30: Remove debug statements, ELPA Syncer, 2024/08/31
- [elpa] externals/phpinspect 967917ceb9 24/30: Update completion FIXME comment with current state of things, ELPA Syncer, 2024/08/31
- [elpa] externals/phpinspect 11ecfdf314 13/30: Fix bug in parsing of interfaces, ELPA Syncer, 2024/08/31