summaryrefslogtreecommitdiff
path: root/src/Controller/FeedController.php
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2026-01-07 20:18:27 -0600
committerChristian Cleberg <[email protected]>2026-01-07 20:18:27 -0600
commit01bd81cf3f943b4aff4e79f93910ab764a873548 (patch)
tree1890dfbf76a205a4e3cb47f29aa0528468883b5d /src/Controller/FeedController.php
parent2fd901458c8da24fd0e28d4b07a99d3f4876316f (diff)
downloadhn-01bd81cf3f943b4aff4e79f93910ab764a873548.tar.gz
hn-01bd81cf3f943b4aff4e79f93910ab764a873548.tar.bz2
hn-01bd81cf3f943b4aff4e79f93910ab764a873548.zip
MASSIVE UPDATE TO PYTHON STATIC SERVICE
Diffstat (limited to 'src/Controller/FeedController.php')
-rw-r--r--src/Controller/FeedController.php47
1 files changed, 0 insertions, 47 deletions
diff --git a/src/Controller/FeedController.php b/src/Controller/FeedController.php
deleted file mode 100644
index 8bba37f..0000000
--- a/src/Controller/FeedController.php
+++ /dev/null
@@ -1,47 +0,0 @@
-<?php
-
-namespace HN\Controllers;
-
-class FeedController
-{
- /**
- * @var string
- */
- private string $canonical_url;
- /**
- * @var string
- */
- private string $description;
- /**
- * @var string
- */
- private string $title;
- /**
- * @var string
- */
- private string $content;
- /**
- * @var false|string
- */
- private mixed $current_year;
-
- public function __construct(string $canonical_url, string $description, string $title, string $content)
- {
- $this->canonical_url = $canonical_url;
- $this->description = $description;
- $this->title = $title;
- $this->content = $content;
- $this->current_year = date("Y");
- }
-
- /**
- * Request template to be presented to the user
- *
- * @access public
- * @author Christian Cleberg <[email protected]>
- */
- public function render(): void
- {
- include_once 'src/View/BaseTemplate.php';
- }
-}