Given a list of strings, write a function that returns the strings sorted based on their length in descending order. If two strings have the same length, they should be sorted alphabetically.
['apple', 'banana', 'pear', 'kiwi', 'orange']['banana', 'orange', 'apple', 'pear', 'kiwi']