Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Import fix for 'ResponseCodeType' class #233

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ vendor
build/
Resources/auth.json
.vagrant
.phpunit.*
8 changes: 0 additions & 8 deletions .idea/modules.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/vcs.xml

This file was deleted.

4 changes: 2 additions & 2 deletions Resources/wsdl/types.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -2350,7 +2350,7 @@
<xs:complexContent>
<xs:extension base="t:RecurrencePatternBaseType">
<xs:sequence>
<xs:element name="DaysOfWeek" type="t:DayOfWeekType" />
<xs:element name="DaysOfWeek" type="t:DaysOfWeekType" />
<xs:element name="DayOfWeekIndex" type="t:DayOfWeekIndexType" />
<xs:element name="Month" type="t:MonthNamesType" />
</xs:sequence>
Expand All @@ -2373,7 +2373,7 @@
<xs:complexContent>
<xs:extension base="t:IntervalRecurrencePatternBaseType">
<xs:sequence>
<xs:element name="DaysOfWeek" type="t:DayOfWeekType" />
<xs:element name="DaysOfWeek" type="t:DaysOfWeekType" />
<xs:element name="DayOfWeekIndex" type="t:DayOfWeekIndexType" />
</xs:sequence>
</xs:extension>
Expand Down
2 changes: 2 additions & 0 deletions src/API/Enumeration/ResponseCodeType.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@

namespace garethp\ews\API\Enumeration;

use garethp\ews\API\Enumeration;

/**
* Provides status information about a request.
*
Expand Down
1 change: 1 addition & 0 deletions src/API/ExchangeWebServices.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@
*/
class ExchangeWebServices
{

const VERSION_2007 = 'Exchange2007';

const VERSION_2007_SP1 = 'Exchange2007_SP1';
Expand Down
7 changes: 4 additions & 3 deletions src/API/Type/RelativeMonthlyRecurrencePatternType.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,17 @@
*
* XSD Type: RelativeMonthlyRecurrencePatternType
*
* @method string getDaysOfWeek()
* @method RelativeMonthlyRecurrencePatternType setDaysOfWeek(string $daysOfWeek)
* @method RelativeMonthlyRecurrencePatternType addDaysOfWeek(string $daysOfWeek)
* @method string[] getDaysOfWeek()
* @method RelativeMonthlyRecurrencePatternType setDaysOfWeek(array $daysOfWeek)
* @method string getDayOfWeekIndex()
* @method RelativeMonthlyRecurrencePatternType setDayOfWeekIndex(string $dayOfWeekIndex)
*/
class RelativeMonthlyRecurrencePatternType extends IntervalRecurrencePatternBaseType
{

/**
* @var string
* @var string[]
*/
protected $daysOfWeek = null;

Expand Down
7 changes: 4 additions & 3 deletions src/API/Type/RelativeYearlyRecurrencePatternType.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@
*
* XSD Type: RelativeYearlyRecurrencePatternType
*
* @method string getDaysOfWeek()
* @method RelativeYearlyRecurrencePatternType setDaysOfWeek(string $daysOfWeek)
* @method RelativeYearlyRecurrencePatternType addDaysOfWeek(string $daysOfWeek)
* @method string[] getDaysOfWeek()
* @method RelativeYearlyRecurrencePatternType setDaysOfWeek(array $daysOfWeek)
* @method string getDayOfWeekIndex()
* @method RelativeYearlyRecurrencePatternType setDayOfWeekIndex(string $dayOfWeekIndex)
* @method string getMonth()
Expand All @@ -19,7 +20,7 @@ class RelativeYearlyRecurrencePatternType extends RecurrencePatternBaseType
{

/**
* @var string
* @var array
*/
protected $daysOfWeek = null;

Expand Down
16 changes: 0 additions & 16 deletions src/Calendar/CalendarAPI.php

This file was deleted.

16 changes: 0 additions & 16 deletions src/Contacts/ContactsAPI.php

This file was deleted.

1 change: 0 additions & 1 deletion src/Generator/PhpConverter.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
use Goetas\XML\XSDReader\Schema\Element\ElementRef;
use Goetas\XML\XSDReader\Schema\Element\ElementDef;
use Goetas\XML\XSDReader\Schema\Element\ElementSingle;
use Goetas\Xsd\XsdToPhp\AbstractConverter;
use Goetas\Xsd\XsdToPhp\Naming\NamingStrategy;

class PhpConverter extends \Goetas\Xsd\XsdToPhp\Php\PhpConverter
Expand Down
16 changes: 0 additions & 16 deletions src/Mail/MailAPI.php

This file was deleted.