1: <?php
2: /**
3: * PHP OpenCloud library.
4: *
5: * @copyright 2013 Rackspace Hosting, Inc. See LICENSE for information.
6: * @license https://www.apache.org/licenses/LICENSE-2.0
7: * @author Jamie Hannaford <jamie.hannaford@rackspace.com>
8: */
9:
10: namespace OpenCloud\Common\Constants;
11:
12: class Size
13: {
14:
15: const KB = 1024;
16: const MB = 1048576;
17: const GB = 1073741824;
18: const TB = 1099511627776;
19:
20: }