Browse code

Update

Benjamin Roth authored on06/08/2023 17:38:02
Showing1 changed files
... ...
@@ -16,4 +16,8 @@ use Symfony\Component\HttpKernel\Bundle\Bundle;
16 16
 
17 17
 class VonrotenbergWeinanlieferungBundle extends Bundle
18 18
 {
19
+    public function getPath(): string
20
+    {
21
+        return \dirname(__DIR__);
22
+    }
19 23
 }
Browse code

Initial commit

Benjamin Roth authored on05/08/2023 16:09:47
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,19 @@
1
+<?php
2
+
3
+declare(strict_types=1);
4
+
5
+/*
6
+ * This file is part of contao-weinanlieferung-bundle.
7
+ *
8
+ * (c) vonRotenberg
9
+ *
10
+ * @license commercial
11
+ */
12
+
13
+namespace vonRotenberg\WeinanlieferungBundle;
14
+
15
+use Symfony\Component\HttpKernel\Bundle\Bundle;
16
+
17
+class VonrotenbergWeinanlieferungBundle extends Bundle
18
+{
19
+}