Browse code

Initial commit

Benjamin Roth authored on14/03/2023 16:28:03
Showing1 changed files
... ...
@@ -3,7 +3,7 @@
3 3
 declare(strict_types=1);
4 4
 
5 5
 /*
6
- * This file is part of modal bundle for Contao.
6
+ * This file is part of newsmailer bundle for Contao.
7 7
  *
8 8
  * (c) Benjamin Roth
9 9
  *
Browse code

Initial commit

Benjamin Roth authored on14/03/2023 14:08:46
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,23 @@
1
+<?php
2
+
3
+declare(strict_types=1);
4
+
5
+/*
6
+ * This file is part of modal bundle for Contao.
7
+ *
8
+ * (c) Benjamin Roth
9
+ *
10
+ * @license LGPL-3.0-or-later
11
+ */
12
+
13
+namespace vonRotenberg\NewsmailerBundle;
14
+
15
+use Symfony\Component\HttpKernel\Bundle\Bundle;
16
+
17
+class VonrotenbergNewsmailerBundle extends Bundle
18
+{
19
+    public function getPath(): string
20
+    {
21
+        return \dirname(__DIR__);
22
+    }
23
+}