Skip to content

Commit f75f769

Browse files
author
Tony Mrakovcic
committed
public
1 parent e9c3843 commit f75f769

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

composer.json

+2-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"name": "degordian/roomfinder",
33
"type": "library",
44
"licence": "MIT",
5-
"version": "1.0.1",
65
"description": "Finding available meeting rooms, and reserving them",
76
"keywords": ["calendar", "rooms", "reservations", "meetings"],
87
"require": {
@@ -18,8 +17,7 @@
1817
],
1918
"autoload": {
2019
"psr-4": {
21-
"degordian2\\roomfinder\\": "src/"
20+
"degordian\\roomfinder\\": "src/"
2221
}
23-
},
24-
"minimum-stability": "dev"
22+
}
2523
}

src/Adapters/RoomResourceAdapterInterface.php

+6-6
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ interface RoomResourceAdapterInterface
1313
const DEFAULT_MEET_LENGTH = 30 * 60;
1414
const DEFAULT_SUMMARY = 'Meet';
1515

16-
function getService();
17-
function getAllRoomsAvailability();
18-
function setTimeFrame($from, $to);
19-
function setRoomCollection(RoomCollection $rooms);
20-
function getRoomCollection();
21-
function reserveRoom($room, $length = self::DEFAULT_MEET_LENGTH, $summary = self::DEFAULT_SUMMARY);
16+
public function getService();
17+
public function getAllRoomsAvailability();
18+
public function setTimeFrame($from, $to);
19+
public function setRoomCollection(RoomCollection $rooms);
20+
public function getRoomCollection();
21+
public function reserveRoom($room, $length = self::DEFAULT_MEET_LENGTH, $summary = self::DEFAULT_SUMMARY);
2222
}

0 commit comments

Comments
 (0)