uawdijnntqw1x1x1
IP : 216.73.216.107
Hostname : toronto-dev2
Kernel : Linux toronto-dev2 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
srv
/
users
/
craft4
/
apps
/
craft4-newsite-space
/
.
/
.
/
vendor
/
craftcms
/
cms
/
src
/
gql
/
arguments
/
Transform.php
/
/
<?php /** * @link https://craftcms.com/ * @copyright Copyright (c) Pixel & Tonic, Inc. * @license https://craftcms.github.io/license/ */ namespace craft\gql\arguments; use craft\gql\base\Arguments; use GraphQL\Type\Definition\Type; /** * Class Transform * * @author Pixel & Tonic, Inc. <support@pixelandtonic.com> * @since 3.3.0 */ class Transform extends Arguments { /** * @inheritdoc */ public static function getArguments(): array { return [ 'handle' => [ 'name' => 'handle', 'type' => Type::string(), 'description' => 'The handle of the named transform to use.', ], 'transform' => [ 'name' => 'transform', 'type' => Type::string(), 'description' => 'The handle of the named transform to use.', ], 'width' => [ 'name' => 'width', 'type' => Type::int(), 'description' => 'Width for the generated transform', ], 'height' => [ 'name' => 'height', 'type' => Type::int(), 'description' => 'Height for the generated transform', ], 'mode' => [ 'name' => 'mode', 'type' => Type::string(), 'description' => 'The mode to use for the generated transform.', ], 'position' => [ 'name' => 'position', 'type' => Type::string(), 'description' => 'The position to use when cropping, if no focal point specified.', ], 'interlace' => [ 'name' => 'interlace', 'type' => Type::string(), 'description' => 'The interlace mode to use for the transform', ], 'quality' => [ 'name' => 'quality', 'type' => Type::int(), 'description' => 'The quality of the transform', ], 'format' => [ 'name' => 'format', 'type' => Type::string(), 'description' => 'The format to use for the transform', ], 'immediately' => [ 'name' => 'immediately', 'type' => Type::boolean(), 'description' => '[_Deprecated_] This argument is deprecated and has no effect.', ], ]; } }
/srv/users/craft4/apps/craft4-newsite-space/././vendor/craftcms/cms/src/gql/arguments/Transform.php