We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccd9a13 commit 7060eacCopy full SHA for 7060eac
src/IRobotsFactory.php
@@ -0,0 +1,21 @@
1
+<?php
2
+
3
+/**
4
+ * This file is part of Nepttune (https://www.peldax.com)
5
+ *
6
+ * Copyright (c) 2018 Václav Pelíšek (info@peldax.com)
7
8
+ * This software consists of voluntary contributions made by many individuals
9
+ * and is licensed under the MIT license. For more information, see
10
+ * <https://www.peldax.com>.
11
+ */
12
13
+declare(strict_types = 1);
14
15
+namespace Nepttune\Component;
16
17
+interface IRobotsFactory
18
+{
19
+ /** @return Robots */
20
+ public function create() : Robots;
21
+}
0 commit comments